From 1ff3ea2a0925a5cdc24f0bd9cb21b9b7038405b3 Mon Sep 17 00:00:00 2001 From: Melissa Jost Date: Thu, 9 Feb 2023 13:39:06 -0800 Subject: [PATCH] tests: Fix failing SST and SystemC nightly tests There was a bug with the SST and SystemC tests where they wouldn't compile due to a missing path for the gdbremote/signals.hh header, and this change includes that so they run properly. Change-Id: I9ff0404e327358fe2d1b77388bbcc1f807136ebe Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/67817 Reviewed-by: Bobby Bruce Maintainer: Bobby Bruce Tested-by: kokoro --- ext/sst/Makefile | 2 +- util/systemc/gem5_within_systemc/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/sst/Makefile b/ext/sst/Makefile index 682af3d9ff..9213d266e9 100644 --- a/ext/sst/Makefile +++ b/ext/sst/Makefile @@ -4,7 +4,7 @@ ARCH=RISCV OFLAG=3 LDFLAGS=-shared -fno-common ${shell pkg-config ${SST_VERSION} --libs} -L../../build/${ARCH}/ -Wl,-rpath ../../build/${ARCH} -CXXFLAGS=-std=c++17 -g -O${OFLAG} -fPIC ${shell pkg-config ${SST_VERSION} --cflags} ${shell python3-config --includes} -I../../build/${ARCH}/ -I../../ext/pybind11/include/ -I../../build/softfloat/ +CXXFLAGS=-std=c++17 -g -O${OFLAG} -fPIC ${shell pkg-config ${SST_VERSION} --cflags} ${shell python3-config --includes} -I../../build/${ARCH}/ -I../../ext/pybind11/include/ -I../../build/softfloat/ -I../../ext CPPFLAGS+=-MMD -MP SRC=$(wildcard *.cc) diff --git a/util/systemc/gem5_within_systemc/Makefile b/util/systemc/gem5_within_systemc/Makefile index cc6a38917d..f2baf88c20 100644 --- a/util/systemc/gem5_within_systemc/Makefile +++ b/util/systemc/gem5_within_systemc/Makefile @@ -39,7 +39,7 @@ VARIANT = opt SYSTEMC_INC = /opt/systemc/include SYSTEMC_LIB = /opt/systemc/lib-linux64 -CXXFLAGS = -I../../../build/$(ARCH) -L../../../build/$(ARCH) +CXXFLAGS = -I../../../build/$(ARCH) -L../../../build/$(ARCH) -I../../../ext/ CXXFLAGS += -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) CXXFLAGS += -std=c++17 CXXFLAGS += -g -DTRACING_ON