-
download mingw-64 from here
-
extract to path SOMEWHERE
-
start command prompt
-
set up paths
a. mingw
set PATH=%PATH%;SOMEWHERE/x64-4.8.1-release-win32-seh-rev5/mingw64/bin
b. julia/bin, if not already
set PATH=%PATH%;C:\path\to\julia\bin
-
start julia inside gdb:
gdb julia-readline-debug
-
run julia in gdb
(gdb) run
-
run help()
julia> help()
-
at this point, assuming it crashes, you should see the (gdb) prompt again, and a short message about the crash. To get the backtrace type:
(gdb) bt
-
copy the whole session to a gist and send the link. Thanks!
Last active
December 24, 2015 04:29
-
-
Save ihnorton/6744267 to your computer and use it in GitHub Desktop.
How to run gdb + Julia on Windows
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment