From 9883fb6b58f0e1a7f6d66f52eb29e534cc5f652f Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Thu, 15 Feb 2018 17:31:10 -0500 Subject: scons,ruby: do not generate unnecessary files Do not generate garnet tester file or Ruby debug headers without a Ruby protocol (i.e. PROTOCOL=None). It makes no sense to include these files into the build when there will be no protocol to utilize them. Change-Id: I8db4dd532f60008217a10c88a2e089f85df9d104 Reviewed-on: https://gem5-review.googlesource.com/8381 Reviewed-by: Jason Lowe-Power Reviewed-by: Andreas Sandberg Maintainer: Jason Lowe-Power --- src/cpu/testers/garnet_synthetic_traffic/SConscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/cpu') diff --git a/src/cpu/testers/garnet_synthetic_traffic/SConscript b/src/cpu/testers/garnet_synthetic_traffic/SConscript index f1624b05e..8fe4def36 100644 --- a/src/cpu/testers/garnet_synthetic_traffic/SConscript +++ b/src/cpu/testers/garnet_synthetic_traffic/SConscript @@ -30,6 +30,9 @@ Import('*') +if env['PROTOCOL'] == 'None': + Return() + SimObject('GarnetSyntheticTraffic.py') Source('GarnetSyntheticTraffic.cc') -- cgit v1.2.3