From 51d780fa4d84316bdd56a2d7cd405642e887c649 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Mon, 19 Jan 2009 09:03:41 -0800 Subject: [PATCH] scons: Don't add all objects to the library twice --- src/SConscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SConscript b/src/SConscript index a14e868fe..cb523aa94 100644 --- a/src/SConscript +++ b/src/SConscript @@ -1011,8 +1011,8 @@ def makeEnv(label, objsfx, strip = False, **kwargs): # First make a library of everything but main() so other programs can # link against m5. - static_lib = new_env.StaticLibrary(libname, static_objs + static_objs) - shared_lib = new_env.SharedLibrary(libname, shared_objs + shared_objs) + static_lib = new_env.StaticLibrary(libname, static_objs) + shared_lib = new_env.SharedLibrary(libname, shared_objs) for target, sources in unit_tests: objs = [ new_env.StaticObject(s) for s in sources ]