mirror of
https://github.com/trussed-dev/littlefs2-sys.git
synced 2026-06-20 04:16:31 -07:00
In #27, we updated littlefs to a patched version that backports a change from littlefs v2.11 (filesystem shrinking) and adds a feature that has not been merged upstream yet (config flag to disable block count check on mount). To be able to cut a new release without rolling out these changes to all users, this patch adds the new unstable-littlefs-patched feature that enables these changes.
84 lines
2.6 KiB
Rust
84 lines
2.6 KiB
Rust
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
let littlefs_path = if cfg!(feature = "unstable-littlefs-patched") {
|
|
"littlefs-patched"
|
|
} else {
|
|
"littlefs"
|
|
};
|
|
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
// Patch lfs.h to remove the lfs_util import because clang fails to locate the
|
|
// libraries for the custom target (especially string.h)
|
|
// Compilation before that succeeds because it's using gcc,
|
|
// which comes as a distribution with these utils.
|
|
// Turns out lfs_utils is not used in lfs.h, and clang properly finds stdint.h and stdbool,
|
|
// but not string.h
|
|
let lfs_h =
|
|
std::fs::read_to_string(format!("{littlefs_path}/lfs.h")).expect("Reading lfs.h succeeds");
|
|
println!("cargo::rerun-if-changed={littlefs_path}/lfs.h");
|
|
let out_lfs_h = out_path.join("lfs.h");
|
|
std::fs::write(
|
|
&out_lfs_h,
|
|
lfs_h.replace(
|
|
r##"#include "lfs_util.h""##,
|
|
"#include <stdint.h>\n#include <stdbool.h>",
|
|
),
|
|
)
|
|
.expect("Failed to write lfs.h");
|
|
|
|
let mut builder = cc::Build::new();
|
|
let builder = builder
|
|
.flag("-std=c99")
|
|
.flag("-DLFS_NO_DEBUG")
|
|
.flag("-DLFS_NO_WARN")
|
|
.flag("-DLFS_NO_ERROR")
|
|
.include(&out_path)
|
|
.include(littlefs_path)
|
|
.file(format!("{littlefs_path}/lfs.c"))
|
|
.file(format!("{littlefs_path}/lfs_util.c"))
|
|
.file("string.c");
|
|
|
|
#[cfg(feature = "software-intrinsics")]
|
|
let builder = builder.flag("-DLFS_NO_INTRINSICS");
|
|
|
|
#[cfg(not(feature = "assertions"))]
|
|
let builder = builder.flag("-DLFS_NO_ASSERT");
|
|
|
|
#[cfg(feature = "trace")]
|
|
let builder = builder.flag("-DLFS_YES_TRACE");
|
|
|
|
#[cfg(not(feature = "malloc"))]
|
|
builder.flag("-DLFS_NO_MALLOC");
|
|
|
|
#[cfg(feature = "multiversion")]
|
|
let builder = builder.flag("-DLFS_MULTIVERSION");
|
|
|
|
builder.compile("lfs-sys");
|
|
|
|
let bindgen = bindgen::Builder::default()
|
|
.header(out_lfs_h.into_os_string().into_string().unwrap())
|
|
.clang_arg("-std=c99")
|
|
.clang_arg("-DLFS_NO_DEBUG")
|
|
.clang_arg("-DLFS_NO_WARN")
|
|
.clang_arg("-DLFS_NO_ERROR");
|
|
|
|
#[cfg(feature = "multiversion")]
|
|
let bindgen = bindgen.clang_arg("-DLFS_MULTIVERSION");
|
|
|
|
let bindings = bindgen
|
|
.derive_default(true)
|
|
.use_core()
|
|
.allowlist_item("lfs_.*")
|
|
.allowlist_item("LFS_.*")
|
|
.generate()
|
|
.expect("Unable to generate bindings");
|
|
|
|
bindings
|
|
.write_to_file(out_path.join("bindings.rs"))
|
|
.expect("Couldn't write bindings!");
|
|
|
|
Ok(())
|
|
}
|