From 221302335baa7bfb532aeb73bb37d2f802ecec25 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Mon, 7 Jan 2013 13:05:39 -0500 Subject: scons: Remove stale compiler options This patch simply prunes the SUNCC and ICC compiler options as they are both sufficiently stale that they would have to be re-written from scratch anyhow. The patch serves to clean things up before shifting to a build environment that enforces basic c++11 compliance as done in the following patch. --- src/SConscript | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/SConscript') diff --git a/src/SConscript b/src/SConscript index 845f514c5..688eb123f 100755 --- a/src/SConscript +++ b/src/SConscript @@ -1006,17 +1006,6 @@ if env['GCC']: ccflags['fast'] += env['LTO_CCFLAGS'] ldflags['fast'] += env['LTO_LDFLAGS'] - -elif env['SUNCC']: - ccflags['debug'] += ['-g0'] - ccflags['opt'] += ['-O'] - for target in ['fast', 'prof', 'perf']: - ccflags[target] += ['-fast'] -elif env['ICC']: - ccflags['debug'] += ['-g', '-O0'] - ccflags['opt'] += ['-O'] - for target in ['fast', 'prof', 'perf']: - ccflags[target] += ['-fast'] elif env['CLANG']: ccflags['debug'] += ['-g', '-O0'] # opt, fast, prof and perf all share the same cc flags -- cgit v1.2.3