Hi, I need to directly call assembly from my rust code which requires the use the cc create: https://crates.io/crates/cc
My project uses nostd since my build target is x86_64-unknown-uefi, I only have access to core. When I create my build.rs and try to compile, it fails due to the cc requiring std references. Is there any way to have this also work for nostd. For example, with lazy_static, I can simply specify that I don't want it to use std with features = ["spin_no_std"] in the dependencies, but this doesn't work with the cc crate. Thanks in advance.
#CC create and assembly with nostd
6 messages · Page 1 of 1 (latest)