changeset 0e77bd34385f in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=0e77bd34385f
description:
        scons: fix building of shared objects

diffstat:

 src/SConscript |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (17 lines):

diff -r 92ba80d63abc -r 0e77bd34385f src/SConscript
--- a/src/SConscript    Mon Oct 10 17:01:33 2011 -0500
+++ b/src/SConscript    Mon Oct 17 17:06:40 2011 -0700
@@ -904,9 +904,10 @@
 
         return obj
 
-    sources = Source.get(main=False, skip_lib=False)
-    static_objs = [ make_obj(s, True) for s in sources ]
-    shared_objs = [ make_obj(s, False) for s in sources ]
+    static_objs = \
+        [ make_obj(s, True) for s in Source.get(main=False, skip_lib=False) ]
+    shared_objs = \
+        [ make_obj(s, False) for s in Source.get(main=False, skip_lib=False) ]
 
     static_date = make_obj(date_source, static=True, extra_deps=static_objs)
     static_objs.append(static_date)
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to