Top Level Namespace

Constant Summary collapse

CWD =
File.expand_path(File.dirname(__FILE__))

Instance Method Summary collapse

Instance Method Details

#sys(cmd) ⇒ Object



3
4
5
6
7
8
9
# File 'ext/extconf.rb', line 3

def sys(cmd)
  puts "  -- #{cmd}"
  unless ret = xsystem(cmd)
    raise "#{cmd} failed, please report to [email protected] with pastie.org link to #{CWD}/mkmf.log and #{CWD}/src/gdb-7.2/config.log"
  end
  ret
end