From 167c85441201fce33185e6ce63e4c38588d0976e Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Fri, 13 Nov 2020 16:48:35 +0000 Subject: [PATCH] gem5/gem5-aarch64-native: don't specify -j twice There's no need to pass -j here as the scons clas does this already. Also, BB_NUMBER_THREADS is the number of BitBake threads, not the number of parallel make jobs. Change-Id: Ib6179bf05c5ec57b7cbe9c045f7bea86518d35af Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-gem5/recipes-devtools/gem5/gem5-native.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-gem5/recipes-devtools/gem5/gem5-native.inc b/meta-gem5/recipes-devtools/gem5/gem5-native.inc index 1df94d04..3c891bae 100644 --- a/meta-gem5/recipes-devtools/gem5/gem5-native.inc +++ b/meta-gem5/recipes-devtools/gem5/gem5-native.inc @@ -10,7 +10,7 @@ LICENSE = "BSD & MIT & LGPLv2.1" GEM5_BUILD_CONFIGS ?= "build/X86/gem5.opt" # Scons build arguments -GEM5_SCONS_ARGS ?= "-j ${BB_NUMBER_THREADS} CC=${BUILD_CC} CXX=${BUILD_CXX} \ +GEM5_SCONS_ARGS ?= "CC=${BUILD_CC} CXX=${BUILD_CXX} \ AS=${BUILD_AS} AR=${BUILD_AR} ${GEM5_BUILD_CONFIGS} \ PYTHON_CONFIG=python3-config"