Skip to content

Commit b9669b5

Browse files
committed
Set up Cargo to build liblapack
1 parent 4df422e commit b9669b5

File tree

6 files changed

+69
-0
lines changed

6 files changed

+69
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Cargo.lock
2+
/target

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "liblapack"]
2+
path = liblapack
3+
url = https://github.com/stainless-steel/liblapack.git

Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "liblapack-sys"
3+
version = "0.0.1"
4+
authors = ["Ivan Ukhov <[email protected]>"]
5+
links = "liblapack"
6+
build = "build.rs"
7+
8+
[dependencies.libblas-sys]
9+
git = "https://github.com/stainless-steel/libblas-sys.git"

build.rs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#![feature(macro_rules)]
2+
3+
macro_rules! cmd(
4+
($name:expr) => (::std::io::process::Command::new($name));
5+
)
6+
7+
macro_rules! fmt(
8+
($($arg:tt)*) => (format_args!(::std::fmt::format, $($arg)*).as_slice());
9+
)
10+
11+
macro_rules! get(
12+
($name:expr) => (::std::os::getenv($name).unwrap());
13+
)
14+
15+
macro_rules! run(
16+
($command:expr) => (
17+
assert!($command.stdout(::std::io::process::InheritFd(1))
18+
.stderr(::std::io::process::InheritFd(2))
19+
.status().unwrap().success());
20+
);
21+
)
22+
23+
fn main() {
24+
let from = Path::new(get!("CARGO_MANIFEST_DIR")).join("liblapack");
25+
let into = Path::new(get!("OUT_DIR"));
26+
27+
run!(cmd!("cmake").cwd(&into).arg(&from)
28+
.arg("-DCMAKE_Fortran_FLAGS='-O2 -frecursive -fPIC'"));
29+
30+
run!(cmd!("cmake").cwd(&into).arg("--build").arg(".")
31+
.arg("--target").arg("lapack")
32+
.arg("--")
33+
.arg(fmt!("-j{}", get!("NUM_JOBS"))));
34+
35+
println!("cargo:rustc-flags=-L {}", into.join("lib").display());
36+
println!("cargo:rustc-flags=-l lapack:static");
37+
}

liblapack

Submodule liblapack added at 2e0bc2d

src/lib.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//! The library facilitates static linking with the [Linear Algebra PACKage][1].
2+
//!
3+
//![1]: http://www.netlib.org/lapack/
4+
5+
extern crate libc;
6+
7+
use libc::{c_char, c_double, c_int};
8+
9+
pub use dsyev_ as dsyev;
10+
11+
#[link(name = "gfortran")]
12+
extern {
13+
/// http://www.netlib.org/lapack/explore-html/dd/d4c/dsyev_8f.html
14+
fn dsyev_(jobz: *const c_char, uplo: *const c_char, n: *const c_int,
15+
a: *mut c_double, lda: *const c_int, w: *mut c_double,
16+
work: *mut c_double, lwork: *const c_int, info: *mut c_int);
17+
}

0 commit comments

Comments
 (0)