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 ab409b8 commit 5309925Copy full SHA for 5309925
src/.cargo/config.toml
@@ -4,4 +4,14 @@ build-std-features = ["compiler-builtins-mem"]
4
5
[build]
6
target = "./.cargo/x86_64-aero_os.json"
7
-rustflags = ["-Cforce-frame-pointers=yes"]
+rustflags = [
8
+ # Miscellaneous:
9
+ "-Cforce-frame-pointers=yes",
10
+
11
+ # Unstable faster compilation time flags:
12
+ #
13
+ # https://blog.rust-lang.org/2023/11/09/parallel-rustc.html
14
+ "-Zthreads=8",
15
+ # https://blog.rust-lang.org/inside-rust/2023/12/22/trait-system-refactor-initiative.html
16
+ "-Znext-solver=coherence",
17
+]
0 commit comments