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 8254340 commit 363e307Copy full SHA for 363e307
.cargo/config.toml
@@ -25,6 +25,10 @@ rustflags = ["-C", "target-feature=+crt-static"]
25
[target.aarch64-pc-windows-msvc]
26
rustflags = ["-C", "target-feature=+crt-static"]
27
28
+# Enable jsconv target feature for all aarch64 targets to support FJCVTZS instruction
29
+[target.'cfg(target_arch = "aarch64")']
30
+rustflags = ["-C", "target-feature=+jsconv"]
31
+
32
# To be able to run unit tests on Windows, support compilation to 'x86_64-pc-windows-msvc'.
33
# Use Hybrid CRT to reduce the size of the binary (Coming by default with Windows 10 and later versions).
34
[target.'cfg(target_os = "windows")']
0 commit comments