mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
tool/runruby.rb: support RUNRUBY_USE_LLDB as well as RUNRUBY_USE_GDB
This commit is contained in:
parent
26d02cc7cd
commit
a105831819
1 changed files with 10 additions and 4 deletions
|
@ -6,6 +6,12 @@
|
|||
show = false
|
||||
precommand = []
|
||||
srcdir = File.realpath('..', File.dirname(__FILE__))
|
||||
case
|
||||
when ENV['RUNRUBY_USE_GDB'] == 'true'
|
||||
debugger = :gdb
|
||||
when ENV['RUNRUBY_USE_LLDB'] == 'true'
|
||||
debugger = :lldb
|
||||
end
|
||||
while arg = ARGV[0]
|
||||
break ARGV.shift if arg == '--'
|
||||
case arg
|
||||
|
@ -132,16 +138,16 @@ end
|
|||
|
||||
ENV.update env
|
||||
|
||||
if debugger or ENV['RUNRUBY_USE_GDB'] == 'true'
|
||||
if debugger == :gdb or !debugger
|
||||
if debugger
|
||||
case debugger
|
||||
when :gdb, nil
|
||||
debugger = %W'gdb -x #{srcdir}/.gdbinit'
|
||||
if File.exist?(gdb = 'run.gdb') or
|
||||
File.exist?(gdb = File.join(abs_archdir, 'run.gdb'))
|
||||
debugger.push('-x', gdb)
|
||||
end
|
||||
debugger << '--args'
|
||||
end
|
||||
if debugger == :lldb
|
||||
when :lldb
|
||||
debugger = ['lldb', '-O', "command script import #{srcdir}/misc/lldb_cruby.py"]
|
||||
if File.exist?(lldb = 'run.lldb') or
|
||||
File.exist?(lldb = File.join(abs_archdir, 'run.lldb'))
|
||||
|
|
Loading…
Reference in a new issue