From: Nathan Binkert Date: Mon, 19 Jan 2009 17:03:41 +0000 (-0800) Subject: scons: Don't add all objects to the library twice X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=51d780fa4d84316bdd56a2d7cd405642e887c649;p=gem5.git scons: Don't add all objects to the library twice --- 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 ]