Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AdaCore/gnatcoll-bindings
GNAT Components Collection – Bindings to C libraries
https://github.com/AdaCore/gnatcoll-bindings
Last synced: about 2 months ago
JSON representation
GNAT Components Collection – Bindings to C libraries
- Host: GitHub
- URL: https://github.com/AdaCore/gnatcoll-bindings
- Owner: AdaCore
- License: other
- Created: 2017-11-07T09:57:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T08:09:39.000Z (9 months ago)
- Last Synced: 2024-05-03T05:14:35.509Z (8 months ago)
- Language: Ada
- Homepage:
- Size: 7.76 MB
- Stars: 13
- Watchers: 35
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: COPYING.RUNTIME
Awesome Lists containing this project
- awesome-ada - gnatcoll-bindings - This is the bindings module of the GNAT Components Collection. (Frameworks / Components)
README
The GNAT Components Collection (GNATcoll) - Bindings
====================================================This is the bindings module of the GNAT Components Collection. Please refer to
individual components for more details.Dependencies
------------This module depends on the following external components, that should be
available on your system:- GPRbuild
- gnatcoll-core
- As well as relevant third-party libraries you need to build bindings for.Building
--------The components of GNATcoll Bindings are built using standalone GPR project
files. To build each of them you can simply do:```sh
$ gprbuild -P /gnatcoll-.gpr
```However, this method has several limitations:
* it builds one version of the library (static, relocatable and static-pic)
at a time
* it might depend on the environment (`C_INCLUDE_PATH`, `LIBRARY_PATH`, ...)In order to simplify that process, each component contains a Python script
called `setup.py`. Each script provides the following subcommands: `build`,
`install`, `clean`, `uninstall`.On the first call to `build`, the user can setup some preferences. You can do
`setup.py build --help` to get the list of available options for each module.
After first call previous preferences will be reused unless you use the
`--reconfigure` switch.Note that you can perform an out-of-source-tree build by just invoking
`setup.py` from another directory.Installing
----------In order to install a given component, either call `gprinstall` or use
`setup.py` script:```sh
$ setup.py install --prefix=some_path
```Note that if `--prefix` is not used, then projects will be installed into the
location of the used compiler.Bindings
--------The following bindings are provided:
- [gmp](gmp/README.md)
- [iconv](iconv/README.md)
- lzma
- [omp](omp/README.md)
- [python](python/README.md)
- [python3](python3/README.md)
- [readline](readline/README.md)
- [syslog](syslog/README.md)Bug reports
-----------Please send questions and bug reports to [email protected] following
the same procedures used to submit reports with the GNAT toolset itself.