summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-11-08 16:16:10 -0800
committerGabe Black <gabeblack@google.com>2018-11-19 21:24:03 +0000
commitbd91e3bf1d56d2b9d1a49a7263a5713210ba7c52 (patch)
treea99532e65d9febb78e95a8df579698fa670f809b
parentdb4953c82786870bcfe1bbe574e7fe7ef1f81367 (diff)
downloadgem5-bd91e3bf1d56d2b9d1a49a7263a5713210ba7c52.tar.xz
systemc: Stop explicitly adding the systemc ext dir to CPPPATH.
That's now handled automatically when the native systemc API is enabled. Change-Id: If1f88929af335a40554a9fd8df6f68aa1a4c0ba4 Reviewed-on: https://gem5-review.googlesource.com/c/14398 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Gabe Black <gabeblack@google.com>
-rw-r--r--src/systemc/tests/SConscript2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/systemc/tests/SConscript b/src/systemc/tests/SConscript
index 74ec0e050..0ecd6ad4a 100644
--- a/src/systemc/tests/SConscript
+++ b/src/systemc/tests/SConscript
@@ -61,7 +61,6 @@ if env['USE_SYSTEMC']:
'compile_only' : self.compile_only
}
- ext_dir = Dir('..').Dir('ext')
test_dir = Dir('.')
class SystemCTestBin(Executable):
def __init__(self, test):
@@ -77,7 +76,6 @@ if env['USE_SYSTEMC']:
filter(lambda f: f not in to_remove, env['CCFLAGS'])
env.Append(CPPPATH=test_dir.Dir('include'))
- env.Append(CPPPATH=ext_dir)
shared_lib_path = env['SHARED_LIB'][0].abspath
sl_dir, sl_base = os.path.split(shared_lib_path)