# HG changeset patch # User Doug Simon # Date 1345542784 -7200 # Node ID 03c4c25ae726e91961869de8d3747e7d40755032 # Parent 957c266d8bc50ebd1d3f9475bb7f8e03b2ea3a2d disabled zipping of lib*.debuginfo files to simplify debugging with gdb diff -r 957c266d8bc5 -r 03c4c25ae726 mx/commands.py --- a/mx/commands.py Tue Aug 21 10:39:19 2012 +0200 +++ b/mx/commands.py Tue Aug 21 11:53:04 2012 +0200 @@ -518,6 +518,9 @@ env['ALT_BOOTDIR'] = jdk env.setdefault('INSTALL', 'y') + # This removes the need to unzip the *.diz files before debugging in gdb + env.setdefault('ZIP_DEBUGINFO_FILES', '0') + # Clear these 2 variables as having them set can cause very confusing build problems env.pop('LD_LIBRARY_PATH', None) env.pop('CLASSPATH', None)