From: Nathan Binkert Date: Fri, 19 Sep 2008 16:42:55 +0000 (-0700) Subject: We're searching for g++ incorrectly X-Git-Tag: m5_2.0_beta6~38 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=196213e35511f6d7cc52ae6a1c32c4a6281cc543;p=gem5.git We're searching for g++ incorrectly --- diff --git a/SConstruct b/SConstruct index f7798b25e..cec2d5173 100644 --- a/SConstruct +++ b/SConstruct @@ -332,12 +332,9 @@ Export('base_dir_list') # M5_PLY is used by isa_parser.py to find the PLY package. env.Append(ENV = { 'M5_PLY' : str(Dir('ext/ply')) }) -env['GCC'] = False -env['SUNCC'] = False -env['ICC'] = False env['GCC'] = subprocess.Popen(env['CXX'] + ' --version', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, - close_fds=True).communicate()[0].find('GCC') >= 0 + close_fds=True).communicate()[0].find('g++') >= 0 env['SUNCC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True).communicate()[0].find('Sun C++') >= 0