gpr-rust

Gpr-Rust is a Rust binding for gpr. its goal is to provide an easy way to integrate Ada sources into the Rust build process. It allows to select and build a GNAT project file by parsing the project and providing all required information to call gprbuild and link the resulting library.

Dependencies

To build this project additionally to Rust an Ada toolchain is needed. Furthermore the following libraries are required:

The easiest way to get these is to install the GNAT Community Edition.

Usage

This library is intended to be used in build scripts. The basic process consists of three steps.

Gpr-Rust doesn't need much configuration, most of the code needed is boilerplate. If any additional options are required to build the Ada project these can be added as arguments to the gprbuild command.

An example project is located in examples/ada_hello/build.rs. It can be tested by running: shell cd examples/ada_hello LD_LIBRARY_PATH=ada_hello/lib cargo run