diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:39 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:39 -0500 |
commit | 221302335baa7bfb532aeb73bb37d2f802ecec25 (patch) | |
tree | 22271eec03a13802c20cce4a1612d015470d5e64 /src/SConscript | |
parent | 921490a0609a1f47fe7add6da551aa70b1707649 (diff) | |
download | gem5-221302335baa7bfb532aeb73bb37d2f802ecec25.tar.xz |
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.
Diffstat (limited to 'src/SConscript')
-rwxr-xr-x | src/SConscript | 11 |
1 files changed, 0 insertions, 11 deletions
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 |