We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286fcba commit c9abf27Copy full SHA for c9abf27
1 file changed
src/toolchain.rs
@@ -91,6 +91,10 @@ pub fn cflags(args: &Args) -> OsString {
91
"-mstack-probe-size=4096",
92
"-mno-red-zone",
93
"-nostdinc",
94
+ // Define HYPERLIGHT as we use this to conditionally enable/disable code
95
+ // in the libc headers
96
+ "-DHYPERLIGHT=1",
97
+ "-D__HYPERLIGHT__=1",
98
];
99
100
let mut flags = OsString::new();
0 commit comments