I missed a couple of things

--HG--
extra : convert_revision : 2fa44718e381ff743fa1cf12f4db2221dca87e4c
This commit is contained in:
Ali Saidi 2007-01-27 15:47:18 -05:00
parent 02bd40d552
commit f9a341f8e7
2 changed files with 2 additions and 2 deletions

View file

@ -219,7 +219,7 @@ env['SUNCC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True,
env['ICC'] = subprocess.Popen(env['CXX'] + ' -V', shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
close_fds=True).communicate()[0].find('Intel') >= 0
if env['GCC'] + env['SUNCC'] env['ICC'] > 1:
if env['GCC'] + env['SUNCC'] + env['ICC'] > 1:
print 'Error: How can we have two at the same time?'
Exit(1)

View file

@ -328,7 +328,7 @@ elif env['SUNCC']:
elif env['ICC']:
ccflags['debug'] = '-g -O0'
ccflags['opt'] = '-g -O'
ccflags['fast'] = '-xW -O3 -ipo -no-prec-div -static'
ccflags['fast'] = '-fast'
ccflags['prof'] = '-fast -g -pg'
else:
print 'Unknown compiler, please fix compiler options'