comparison mx/commands.py @ 6276:03c4c25ae726

disabled zipping of lib*.debuginfo files to simplify debugging with gdb
author Doug Simon <doug.simon@oracle.com>
date Tue, 21 Aug 2012 11:53:04 +0200
parents 472a648769e4
children 4f9574b2893e
comparison
equal deleted inserted replaced
6275:957c266d8bc5 6276:03c4c25ae726
516 env.setdefault('LANG', 'C') 516 env.setdefault('LANG', 'C')
517 env.setdefault('HOTSPOT_BUILD_JOBS', str(cpus)) 517 env.setdefault('HOTSPOT_BUILD_JOBS', str(cpus))
518 env['ALT_BOOTDIR'] = jdk 518 env['ALT_BOOTDIR'] = jdk
519 env.setdefault('INSTALL', 'y') 519 env.setdefault('INSTALL', 'y')
520 520
521 # This removes the need to unzip the *.diz files before debugging in gdb
522 env.setdefault('ZIP_DEBUGINFO_FILES', '0')
523
521 # Clear these 2 variables as having them set can cause very confusing build problems 524 # Clear these 2 variables as having them set can cause very confusing build problems
522 env.pop('LD_LIBRARY_PATH', None) 525 env.pop('LD_LIBRARY_PATH', None)
523 env.pop('CLASSPATH', None) 526 env.pop('CLASSPATH', None)
524 527
525 mx.run([mx.gmake_cmd(), build + buildSuffix], cwd=join(_graal_home, 'make'), err=filterXusage) 528 mx.run([mx.gmake_cmd(), build + buildSuffix], cwd=join(_graal_home, 'make'), err=filterXusage)