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 6dda255 commit 4fb6056Copy full SHA for 4fb6056
config.nims
@@ -61,11 +61,12 @@ elif defined(macosx) and defined(arm64):
61
switch("passC", "-mcpu=apple-a14")
62
# TODO: newer Clang >=15.0 can: https://github.com/llvm/llvm-project/commit/fcca10c69aaab539962d10fcc59a5f074b73b0de
63
else:
64
- switch("passC", "-march=native")
65
if defined(windows):
66
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782
67
# ("-fno-asynchronous-unwind-tables" breaks Nim's exception raising, sometimes)
68
- switch("passC", "-mno-avx512vl")
+ switch("passC", "-march=x86-64")
+ else: switch("passC", "-march=native")
69
+
70
71
--tlsEmulation:
72
off
0 commit comments