disable frame pointer omission optimization (#2189)
* disable frame pointer omission optimization it breaks the GC * oops
This commit is contained in:
parent
7d5edb4353
commit
b367db1a2a
|
@ -52,6 +52,11 @@ else:
|
|||
switch("passC", "-mno-avx512f")
|
||||
switch("passL", "-mno-avx512f")
|
||||
|
||||
# omitting frame pointers in nim breaks the GC
|
||||
# https://github.com/nim-lang/Nim/issues/10625
|
||||
switch("passC", "-fno-omit-frame-pointer")
|
||||
switch("passL", "-fno-omit-frame-pointer")
|
||||
|
||||
--threads:on
|
||||
--opt:speed
|
||||
--excessiveStackTrace:on
|
||||
|
|
Loading…
Reference in New Issue