changeset 50fb2cb40609 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=50fb2cb40609
description:
        scons: Don't build the intermediate static library unless explicitly 
requested.
        This means that similar to libm5_fast.so, you need to explicitly build
        build/ALPHA_SE/libm5_fast.a if you want it.

diffstat:

1 file changed, 2 insertions(+), 2 deletions(-)
src/SConscript |    4 ++--

diffs (16 lines):

diff -r 8c1aa74572e4 -r 50fb2cb40609 src/SConscript
--- a/src/SConscript    Fri Feb 06 20:55:50 2009 -0800
+++ b/src/SConscript    Mon Feb 09 20:10:12 2009 -0800
@@ -992,10 +992,10 @@
 
     for target, sources in unit_tests:
         objs = [ new_env.StaticObject(s) for s in sources ]
-        new_env.Program("unittest/%s.%s" % (target, label), objs + static_lib)
+        new_env.Program("unittest/%s.%s" % (target, label), objs + static_objs)
 
     # Now link a stub with main() and the static library.
-    objects = [new_env.Object(s) for s in cc_bin_sources] + static_lib
+    objects = [new_env.Object(s) for s in cc_bin_sources] + static_objs
     if strip:
         unstripped_exe = exename + '.unstripped'
         new_env.Program(unstripped_exe, objects)
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to