Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Coinpopt-sys
coinipopt-sys crate is a *-sys crate. The package provides Low-level bindings to the Ipopt library.
By this package, you don't need to worry about installing Ipopt in the system, and it's a package for all platforms.
Ipopt (Coin-or linear programming) is an open-source linear programming solver. It is primarily meant to be used as a callable library, but a basic, stand-alone executable version is also available.
Usage
Just add the following to your Cargo.toml:
[]
= "0.2"
Configuration
The following Cargo features are supported:
defaulttoosiclpandclpsolverfeature;osiclpto build with Osi supported;clpsolverto buildClpSolverlib and crate the api forRust. If you do not useClpdirectly, you can disable this feature to reduce the build time;
The package build from the source and link statically by default. It also provide the following environment variables to allow users to link to system library customly:
CARGO_IPOPT_STATICto link to Ipopt statically;CARGO_IPOPT_SYSTEMto link to Ipopt system library;
Set the environment variable to 1 to enable the feature. For example, to link to system library dynamically, set CARGO_${LIB_NAME}_SYSTEM to 1; to link to system library statically, set both CARGO_${LIB_NAME}_SYSTEM and CARGO_${LIB_NAME}_STATIC to 1.
You can also use ipopt-sys with no-default-features, and add ipopt-src to the Cargo.toml and enable the related feature defined by ipopt-src. Please see Ipopt-src.
Windows and vcpkg
On Windows, if ${LIB_NAME}_SYSTEM is set to 1, ipopt-src will use [vcpkg] to find Ipopt. Before building, you must have the correct Ipopt installed for your target triplet and kind of linking. For instance, to link dynamically for the x86_64-pc-windows-msvc toolchain, install ipopt for the x64-windows triplet:
To link Ipopt statically, install ipopt for the x64-windows-static-md triplet:
To link Ipopt and C Runtime (CRT) statically, install ipopt for the x64-windows-static triplet:
and build with +crt-static option
RUSTFLAGS='-C target-feature=+crt-static'
Please see the "Static and dynamic C runtimes" in The Rust reference for detail.
Cross Compilation
Because [openblas-src]'s Issue #101, we can't cross compile the package with openblas-static feature. So, if you want to cross compile the package, you could use mike-kfed instead.
Add this to your project/.cargo/config.toml.
[]
= { = "https://github.com/mike-kfed/openblas-src.git", = "arm-cross-compile" }
you can compile it for the other target by providing the --target option to cargo build.
| Target | supported |
|---|---|
arm-unknown-linux-gnueabi |
✓ |
arm-unknown-linux-gnueabihf |
✓ |
armv7-linux-androideabi |
✓ |
armv7-unknown-linux-gnueabi |
✓ |
armv7-unknown-linux-gnueabihf |
✓ |
armv7-unknown-linux-musleabi |
✓ |
armv7-unknown-linux-musleabihf |
✓ |
riscv64gc-unknown-linux-gnu |
✓ |
x86_64-pc-windows-msvc |
✓ |
x86_64-unknown-linux-gnu |
✓ |
Contribution
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.