We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e217d commit b57b5acCopy full SHA for b57b5ac
psm/build.rs
@@ -59,12 +59,11 @@ fn main() {
59
60
if !msvc {
61
cfg.flag("-xassembler-with-cpp");
62
+ cfg.define(&*format!("CFG_TARGET_OS_{}", os), None);
63
+ cfg.define(&*format!("CFG_TARGET_ARCH_{}", arch), None);
64
+ cfg.define(&*format!("CFG_TARGET_ENV_{}", env), None);
65
}
66
cfg.file(asm);
67
- cfg.define(&*format!("CFG_TARGET_OS_{}", os), None);
- cfg.define(&*format!("CFG_TARGET_ARCH_{}", arch), None);
- cfg.define(&*format!("CFG_TARGET_ENV_{}", env), None);
68
-
69
cfg.compile("libpsm_s.a");
70
0 commit comments