diff options
author | Nathan Binkert <nate@binkert.org> | 2009-06-12 21:19:16 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-06-12 21:19:16 -0700 |
commit | e1eacc8d92498f29a43b427e314c95798d70a080 (patch) | |
tree | 9c975acdccca1909f1e8fcab9fc47a9577d19193 /src | |
parent | d3d8a5a83beee58b4e4398ab18ff729bee072bd5 (diff) | |
download | gem5-e1eacc8d92498f29a43b427e314c95798d70a080.tar.xz |
scons: Make shared library builds work again
Compile gzstream as position independent code
use the PIC version of date for shared libs...oops
Diffstat (limited to 'src')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index 42e002310..d96922b49 100644 --- a/src/SConscript +++ b/src/SConscript @@ -984,7 +984,7 @@ def makeEnv(label, objsfx, strip = False, **kwargs): static_objs.append(static_date) shared_date = make_obj(date_source, static=False, extra_deps=shared_objs) - shared_objs.append(static_date) + shared_objs.append(shared_date) # First make a library of everything but main() so other programs can # link against m5. |