зеркало из https://github.com/github/ruby.git
tool/runruby.rb: support RUNRUBY_USE_LLDB as well as RUNRUBY_USE_GDB
This commit is contained in:
Родитель
26d02cc7cd
Коммит
a105831819
|
@ -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'))
|
||||
|
|
Загрузка…
Ссылка в новой задаче