From 80bf4c8dbcaaa839754f006f8fc980b26222a70f Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 7 Jun 2018 20:45:33 -0700 Subject: systemc, scons: Link systemc tests against the shared gem5 library. Otherwise, having hundreds of statically linked gem5s takes up a huge amount of space, and all those repeated linkings brings the mightiest workstation to its knees with sufficient parallelism, or will take forever without it. Change-Id: I4c358b1a50c5e2b0027ac72423f887e24c786b19 Reviewed-on: https://gem5-review.googlesource.com/10959 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/tests/SConscript | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/systemc/tests/SConscript b/src/systemc/tests/SConscript index cc7c476b3..81f122dab 100644 --- a/src/systemc/tests/SConscript +++ b/src/systemc/tests/SConscript @@ -62,10 +62,9 @@ if env['USE_SYSTEMC']: } ext_dir = Dir('..').Dir('ext') - class SystemCTestBin(UnitTest): + class SystemCTestBin(Executable): def __init__(self, test): - super(SystemCTestBin, self).__init__( - test.target, *test.sources, main=True) + super(SystemCTestBin, self).__init__(test.target, *test.sources) @classmethod def declare_all(cls, env): @@ -80,6 +79,14 @@ if env['USE_SYSTEMC']: super(SystemCTestBin, cls).declare_all(env) + def declare(self, env): + sources = list(self.sources) + for f in self.filters: + sources = Source.all.apply_filter(f) + objs = self.srcs_to_objs(env, sources) + objs = objs + env['SHARED_LIB'] + env['MAIN_OBJS'] + return super(SystemCTestBin, self).declare(env, objs) + tests = [] def new_test(dirname, name): test = SystemCTest(dirname, name) -- cgit v1.2.3