docs.rs failed to build cplex-sys-0.2.3
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.
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.
Low-level binding for Cplex
This crate provides automatically generated low-level bindings to Cplex. The build script scans the C-header files and creates appropriate functions and constants.
In order to compile this crate, the environment variable CPLEX_HOME
must be set to path containing cplex, e.g.
(That path should contain the header files in include/ilcplex and the library
in lib/x86-64_linux).
Note that this is a really low-level. The functions are just plain bindings to the C-API without any additional safe guards.
Example
extern crate cplex_sys as cpx;
use ;
use CString;
use null;