comparison mx/mx_graal.py @ 19733:3f7cd3c36734

mx_graal: do not clear LD_LIBRARY_PATH before invoking make
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 09 Mar 2015 17:49:57 +0100
parents 84b85c43633b
children 287f7c223d58
comparison
equal deleted inserted replaced
19732:19d3db31bcea 19733:3f7cd3c36734
938 # We want ALL the symbols when debugging on Solaris 938 # We want ALL the symbols when debugging on Solaris
939 setMakeVar('STRIP_POLICY', 'no_strip') 939 setMakeVar('STRIP_POLICY', 'no_strip')
940 # This removes the need to unzip the *.diz files before debugging in gdb 940 # This removes the need to unzip the *.diz files before debugging in gdb
941 setMakeVar('ZIP_DEBUGINFO_FILES', '0', env=env) 941 setMakeVar('ZIP_DEBUGINFO_FILES', '0', env=env)
942 942
943 # Clear these 2 variables as having them set can cause very confusing build problems 943 # Clear this variable as having it set can cause very confusing build problems
944 env.pop('LD_LIBRARY_PATH', None)
945 env.pop('CLASSPATH', None) 944 env.pop('CLASSPATH', None)
946 945
947 # Issue an env prefix that can be used to run the make on the command line 946 # Issue an env prefix that can be used to run the make on the command line
948 if not mx._opts.verbose: 947 if not mx._opts.verbose:
949 mx.log('--------------- make command line ----------------------') 948 mx.log('--------------- make command line ----------------------')