2022-09-22 13:13:16 +00:00
|
|
|
use std::env;
|
|
|
|
use std::env::set_current_dir;
|
2022-09-28 13:45:26 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2022-09-22 13:13:16 +00:00
|
|
|
use std::process::Command;
|
|
|
|
|
2024-02-13 18:50:00 +00:00
|
|
|
extern crate cc;
|
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
fn build_nwaku_lib(project_dir: &Path) {
|
2022-09-28 13:45:26 +00:00
|
|
|
let vendor_path = project_dir.join("vendor");
|
2022-11-30 08:45:22 +00:00
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
set_current_dir(vendor_path).expect("Moving to vendor dir");
|
2022-11-30 08:45:22 +00:00
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
let mut cmd = Command::new("make");
|
|
|
|
cmd.arg("libwaku").arg("STATIC=true");
|
2022-11-30 08:45:22 +00:00
|
|
|
cmd.status()
|
2024-02-08 15:47:02 +00:00
|
|
|
.map_err(|e| println!("cargo:warning=make build failed due to: {e}"))
|
2022-09-22 13:13:16 +00:00
|
|
|
.unwrap();
|
2022-11-30 08:45:22 +00:00
|
|
|
|
2022-09-28 13:45:26 +00:00
|
|
|
set_current_dir(project_dir).expect("Going back to project dir");
|
|
|
|
}
|
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
fn generate_bindgen_code(project_dir: &Path) {
|
|
|
|
let vendor_path = project_dir.join("vendor");
|
|
|
|
let header_path = vendor_path.join("library/libwaku.h");
|
2022-09-23 06:47:28 +00:00
|
|
|
|
2024-02-13 18:50:00 +00:00
|
|
|
cc::Build::new()
|
2024-02-26 15:13:30 +00:00
|
|
|
.object(
|
|
|
|
vendor_path
|
|
|
|
.join("vendor/nim-libbacktrace/libbacktrace_wrapper.o")
|
|
|
|
.display()
|
|
|
|
.to_string(),
|
|
|
|
)
|
|
|
|
.compile("libbacktrace_wrapper");
|
2024-02-13 18:50:00 +00:00
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
println!("cargo:rerun-if-changed={}", header_path.display());
|
2024-02-26 15:13:30 +00:00
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search={}",
|
|
|
|
vendor_path.join("build").display()
|
|
|
|
);
|
|
|
|
println!("cargo:rustc-link-lib=static=waku");
|
2024-10-28 13:05:24 +00:00
|
|
|
|
2024-02-26 15:13:30 +00:00
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search={}",
|
|
|
|
vendor_path
|
|
|
|
.join("vendor/nim-nat-traversal/vendor/miniupnp/miniupnpc/build")
|
|
|
|
.display()
|
|
|
|
);
|
2024-02-13 18:50:00 +00:00
|
|
|
println!("cargo:rustc-link-lib=static=miniupnpc");
|
2024-10-28 13:05:24 +00:00
|
|
|
|
2024-02-26 15:13:30 +00:00
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search={}",
|
|
|
|
vendor_path
|
|
|
|
.join("vendor/nim-nat-traversal/vendor/libnatpmp-upstream")
|
|
|
|
.display()
|
|
|
|
);
|
2024-02-13 18:50:00 +00:00
|
|
|
println!("cargo:rustc-link-lib=static=natpmp");
|
2024-10-28 13:05:24 +00:00
|
|
|
|
2024-02-13 18:50:00 +00:00
|
|
|
println!("cargo:rustc-link-lib=dl");
|
|
|
|
println!("cargo:rustc-link-lib=m");
|
2024-10-28 13:05:24 +00:00
|
|
|
|
2024-02-26 15:13:30 +00:00
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search=native={}",
|
|
|
|
vendor_path
|
|
|
|
.join("vendor/nim-libbacktrace/install/usr/lib")
|
|
|
|
.display()
|
|
|
|
);
|
2024-02-13 18:50:00 +00:00
|
|
|
println!("cargo:rustc-link-lib=static=backtrace");
|
|
|
|
|
2024-10-28 13:05:24 +00:00
|
|
|
println!("cargo:rustc-link-lib=stdc++");
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search={}",
|
|
|
|
vendor_path
|
|
|
|
.join("vendor/negentropy/cpp")
|
|
|
|
.display()
|
|
|
|
);
|
|
|
|
println!("cargo:rustc-link-lib=static=negentropy");
|
|
|
|
|
|
|
|
println!("cargo:rustc-link-lib=ssl");
|
|
|
|
println!("cargo:rustc-link-lib=crypto");
|
|
|
|
|
|
|
|
cc::Build::new()
|
|
|
|
.file("src/cmd.c") // Compile the C file
|
|
|
|
.compile("cmditems"); // Compile it as a library
|
|
|
|
println!("cargo:rustc-link-lib=static=cmditems");
|
|
|
|
|
2024-02-13 18:50:00 +00:00
|
|
|
// TODO: Determine if pthread is automatically included
|
2024-10-28 13:05:24 +00:00
|
|
|
println!("cargo:rustc-link-lib=pthread");
|
|
|
|
|
2024-02-13 20:18:16 +00:00
|
|
|
// TODO: Test in other architectures
|
2023-11-02 17:59:41 +00:00
|
|
|
|
2022-09-23 06:47:28 +00:00
|
|
|
// Generate waku bindings with bindgen
|
2022-09-22 13:13:16 +00:00
|
|
|
let bindings = bindgen::Builder::default()
|
|
|
|
// The input header we would like to generate
|
|
|
|
// bindings for.
|
2024-02-08 15:47:02 +00:00
|
|
|
.header(format!("{}", header_path.display()))
|
2022-09-22 13:13:16 +00:00
|
|
|
// Tell cargo to invalidate the built crate whenever any of the
|
|
|
|
// included header files changed.
|
|
|
|
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
|
|
|
|
// Finish the builder and generate the bindings.
|
|
|
|
.generate()
|
|
|
|
// Unwrap the Result and panic on failure.
|
|
|
|
.expect("Unable to generate bindings");
|
|
|
|
|
|
|
|
// Write the bindings to the $OUT_DIR/bindings.rs file.
|
|
|
|
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
bindings
|
|
|
|
.write_to_file(out_path.join("bindings.rs"))
|
|
|
|
.expect("Couldn't write bindings!");
|
|
|
|
}
|
2022-09-28 13:45:26 +00:00
|
|
|
|
2023-02-15 10:42:38 +00:00
|
|
|
#[cfg(not(doc))]
|
2022-09-28 13:45:26 +00:00
|
|
|
fn main() {
|
|
|
|
let project_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
|
|
|
|
|
2024-02-08 15:47:02 +00:00
|
|
|
build_nwaku_lib(&project_dir);
|
|
|
|
generate_bindgen_code(&project_dir);
|
2022-09-28 13:45:26 +00:00
|
|
|
}
|