Rust low-level bindings for GMP, MPFR and MPC

The gmp-mpfr-sys crate provides Rust low-level bindings for

The source of the three libraries is included in the package.

License

This crate is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

See LICENSE-LGPL and LICENSE-GPL for details.

Documentation

This crate provides a low-level interface to GMP, MPFR and MPC. If you want a high-level API, consider using the following crates:

If you want to use the low-level bindings, you can see the documentation of the libraries themselves:

Usage

Add this to your Cargo.toml:

toml [dependencies] gmp-mpfr-sys = "0.4"

and this to your crate root:

rust extern crate gmp_mpfr_sys;

Building on GNU/Linux

To build on GNU/Linux, simply make sure you have diffutils, gcc and make installed on your system. For example on Fedora:

sh sudo dnf install diffutils gcc make

Building on macOS

To build on macOS, you need the command-line developer tools. An easy way to install them is to start building the crate using cargo build. If the tools are not installed yet, a popup should appear which should help you install them.

Building on Windows

You can build on Windows with the Rust GNU toolchain and an up-to-date MSYS2 installation. Some steps for a 64-bit environment are listed below, you can follow similar steps for a 32-bit environment by substituting 32 for 64. To install MSYS2:

  1. Install MSYS2 using the installer.

  2. Launch the MSYS2 MinGW 64-bit terminal from the start menu.

  3. Install the required tools. sh pacman -S pacman-mirrors pacman -S diffutils make mingw-w64-x86_64-gcc

Then, to build a crate with a dependency on this crate:

  1. Launch the MSYS MinGW 64-bit terminal from the start menu.

  2. Change to the crate directory.

    Note that building the GMP and MPFR libraries in MSYS with absolute paths does not work very well, so relative paths are used. If your crate is inside C:\msys64 and the .cargo directory is outside C:\msys64, this will not work. Please move your crate to the same side of C:\msys64 as .cargo.

  3. Build the crate using cargo.