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'm not sure why, but starting with julia 1.4, the official binaries don't seem to open in LLDB on the mac:
22:17:45 $ lldb /Applications/Julia-1.4.app/Contents/Resources/julia/bin/julia
(lldb) target create "/Applications/Julia-1.4.app/Contents/Resources/julia/bin/julia"
Current executable set to '/Applications/Julia-1.4.app/Contents/Resources/julia/bin/julia' (x86_64).
(lldb) r
error: process exited with status -1 (Error 1)
(lldb) ^D
22:18:15 $ lldb /Applications/Julia-1.5.app/Contents/Resources/julia/bin/julia
(lldb) target create "/Applications/Julia-1.5.app/Contents/Resources/julia/bin/julia"
Current executable set to '/Applications/Julia-1.5.app/Contents/Resources/julia/bin/julia' (x86_64).
(lldb) r
error: process exited with status -1 (Error 1)
(lldb)
error: No auto repeat.
(lldb) ^D
But 1.3 and 1.0 worked correctly:
22:20:17 $ lldb /Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia
(lldb) target create "/Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia"
Current executable set to '/Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia' (x86_64).
(lldb) r
Process 21098 launched: '/Applications/Julia-1.0.app/Contents/Resources/julia/bin/julia' (x86_64)
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.0.2 (2018-11-08)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
Process 21098 exited with status = 0 (0x00000000)
(lldb) ^D
22:20:29 $ lldb /Applications/Julia-1.3.app/Contents/Resources/julia/bin/julia
(lldb) target create "/Applications/Julia-1.3.app/Contents/Resources/julia/bin/julia"
Current executable set to '/Applications/Julia-1.3.app/Contents/Resources/julia/bin/julia' (x86_64).
(lldb) r
Process 21534 launched: '/Applications/Julia-1.3.app/Contents/Resources/julia/bin/julia' (x86_64)
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.3.1 (2019-12-30)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
The text was updated successfully, but these errors were encountered:
I'm not sure why, but starting with julia 1.4, the official binaries don't seem to open in LLDB on the mac:
But 1.3 and 1.0 worked correctly:
The text was updated successfully, but these errors were encountered: