Hello,
I need to generate two builds from my crate:
In the first build, neither build.rs and main.rs should be compiled with target-cpu=znver1
.
In the second build, only main.rs should be compiled with target-cpu=znver1
.
Any ideas?
I tried export RUSTFLAGS="-C target-cpu=znver1"
, but this affects both main.rs and build.rs