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 /ext/gzstream | |
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 'ext/gzstream')
-rw-r--r-- | ext/gzstream/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gzstream/SConscript b/ext/gzstream/SConscript index c8432ae15..b93f5e361 100644 --- a/ext/gzstream/SConscript +++ b/ext/gzstream/SConscript @@ -30,7 +30,7 @@ Import('main') -main.Library('gzstream', [File('gzstream.cc')]) +main.Library('gzstream', [main.SharedObject('gzstream.cc')]) main.Prepend(CPPPATH=Dir('.')) main.Append(LIBS=['gzstream']) |