summaryrefslogtreecommitdiff
path: root/src/sim/SConscript
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-05-04 16:58:24 -0700
committerNathan Binkert <nate@binkert.org>2009-05-04 16:58:24 -0700
commitdc35d2f125de43fb2b2865e9211cccca8546b8cd (patch)
tree44ff636b20f5c7454417c894b318f514c82b3bfd /src/sim/SConscript
parent7146eb79f179510c980fd7681d1e45adf212c2b0 (diff)
downloadgem5-dc35d2f125de43fb2b2865e9211cccca8546b8cd.tar.xz
scons: re-work the *Source functions to take more information.
Start by turning all of the *Source functions into classes so we can do more calculations and more easily collect the data we need. Add parameters to the new classes for indicating what sorts of flags the objects should be compiled with so we can allow certain files to be compiled without Werror for example.
Diffstat (limited to 'src/sim/SConscript')
-rw-r--r--src/sim/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/SConscript b/src/sim/SConscript
index 750007947..c13ea9909 100644
--- a/src/sim/SConscript
+++ b/src/sim/SConscript
@@ -41,7 +41,7 @@ Source('debug.cc')
Source('eventq.cc')
Source('faults.cc')
Source('init.cc')
-BinSource('main.cc')
+Source('main.cc', bin_only=True)
Source('pseudo_inst.cc')
Source('root.cc')
Source('serialize.cc')