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 763a4fa commit 437999dCopy full SHA for 437999d
.cargo/config.toml
@@ -11,7 +11,13 @@ rustflags = ["-Ctarget-cpu=apple-m1"]
11
[target.x86_64-pc-windows-msvc]
12
# FORCE:MULTIPLE is a bit sketchy. v8 and rocksdb both export the same symbol.
13
# This seems to work around it to build on windows, but it's not ideal.
14
-rustflags = ["-Clink-arg=/FORCE:MULTIPLE", "-Clink-arg=/STACK:4194304", "-Ctarget-feature=+crt-static"]
+rustflags = [
15
+ "-Clink-arg=/FORCE:MULTIPLE",
16
+ "-Clink-arg=/STACK:4194304",
17
+ "-Ctarget-feature=+crt-static",
18
+ "-Clink-arg=/NODEFAULTLIB:libcmt",
19
+ "-Clink-arg=/NODEFAULTLIB:msvcrt"
20
+]
21
22
[target.'cfg(all())']
23
rustflags = ["--cfg", "tokio_unstable"]
0 commit comments