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 1c6645b commit e9b327dCopy full SHA for e9b327d
src/hyperlight_guest_bin/.cargo/config.toml
@@ -0,0 +1,2 @@
1
+[build]
2
+target = "x86_64-unknown-none"
src/hyperlight_guest_bin/build.rs
@@ -95,7 +95,9 @@ fn cargo_main() {
95
cfg.flag("-mstack-probe-size=4096");
96
cfg.compiler("clang");
97
98
- unsafe { env::set_var("AR_x86_64_unknown_none", "llvm-ar") };
+ if cfg!(windows) {
99
+ unsafe { env::set_var("AR_x86_64_unknown_none", "llvm-ar") };
100
+ }
101
cfg.compile("hyperlight_guest_bin");
102
}
103
0 commit comments