You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying out nlvm for the first time, and I would like to try using the debugger, but it seems unable to compile anything if the --debugger:native argument is passed. Is there something I could be doing wrong? I'm just testing it with a simple fibonacci function
proc fib(n: uint64): uint64 =
if n <= 1: return n
return fib(n - 1) + fib(n - 2)
echo fib(47)
compiling with:
nlvm c --debugger:native ./src/main.nim
I compiled nlvm from source without the STATIC_LLVM=1 argument
The text was updated successfully, but these errors were encountered:
I am trying out nlvm for the first time, and I would like to try using the debugger, but it seems unable to compile anything if the --debugger:native argument is passed. Is there something I could be doing wrong? I'm just testing it with a simple fibonacci function
compiling with:
I compiled nlvm from source without the
STATIC_LLVM=1
argumentThe text was updated successfully, but these errors were encountered: