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 9802c75 commit 5ceab31Copy full SHA for 5ceab31
.cargo/config
@@ -1,2 +1,5 @@
1
[build]
2
-target = "x86_64-real_mode.json"
+target = "x86_64-real_mode.json"
3
+
4
+[alias]
5
+xbuild = "build -Zbuild-std=core"
build.rs
@@ -53,7 +53,7 @@ fn build_subproject(
53
let mut cmd = Command::new("cargo");
54
cmd.current_dir(&dir);
55
56
- cmd.arg("xbuild").arg("--release");
+ cmd.arg("build").arg("--release").arg("-Zbuild-std=core");
57
cmd.arg("--verbose");
58
59
cmd.arg(format!(
0 commit comments