Skip to content

Commit 2c6a271

Browse files
committed
libosdp-sys: Pull in __BARE_METAL__ target fix
Signed-off-by: Siddharth Chandrasekaran <sidcha.dev@gmail.com>
1 parent 6ffd7bc commit 2c6a271

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

libosdp-sys/build.rs

+6
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,12 @@ fn main() -> Result<()> {
123123
build = build.warnings_into_errors(true)
124124
}
125125

126+
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
127+
if target_os.is_empty() || target_os == "none" {
128+
println!("cargo:warning=Building for bare metal target");
129+
build = build.define("__BARE_METAL__", "1")
130+
}
131+
126132
let source_files = vec![
127133
"vendor/utils/src/list.c",
128134
"vendor/utils/src/queue.c",

0 commit comments

Comments
 (0)