From: Mahyar Samani Date: Sat, 2 May 2020 02:19:19 +0000 (+0000) Subject: tests: cross-compiling hello binaries for hello_se tests. X-Git-Tag: v20.1.0.0~39 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1ebdf66ffbfff676e305db5140b42ab24f11bfe;p=gem5.git tests: cross-compiling hello binaries for hello_se tests. Some of the hello_se tests fail due to different syntax of the string for different isas. This patch adds makefiles for cross-compiling the hello.c file located at tests/test-progs/hello/src/. Change-Id: I8ccfc0487020df9da722a97e57310db2d2e8882c Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/28528 Reviewed-by: Bobby R. Bruce Maintainer: Bobby R. Bruce Tested-by: kokoro --- diff --git a/tests/test-progs/hello/bin/mips/linux/hello b/tests/test-progs/hello/bin/mips/linux/hello deleted file mode 100755 index a3db001ec..000000000 Binary files a/tests/test-progs/hello/bin/mips/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/bin/power/linux/hello b/tests/test-progs/hello/bin/power/linux/hello deleted file mode 100755 index 6619ae37f..000000000 Binary files a/tests/test-progs/hello/bin/power/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/bin/sparc/linux/hello b/tests/test-progs/hello/bin/sparc/linux/hello deleted file mode 100755 index e254ae33f..000000000 Binary files a/tests/test-progs/hello/bin/sparc/linux/hello and /dev/null differ diff --git a/tests/test-progs/hello/src/Makefile.mips b/tests/test-progs/hello/src/Makefile.mips new file mode 100644 index 000000000..675c8d154 --- /dev/null +++ b/tests/test-progs/hello/src/Makefile.mips @@ -0,0 +1,11 @@ +all: hello + +hello: hello.c dockcross-mips + ./dockcross-mips bash -c '$$CC hello.c -o hello -static' + +dockcross-mips: + docker run --rm dockcross/linux-mips > ./dockcross-mips + chmod +x ./dockcross-mips + +clean: + rm -f dockcross* hello