[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 01/11] tests/tcg: update the defaults for x86 compilers
From: |
Alex Bennée |
Subject: |
[PATCH v2 01/11] tests/tcg: update the defaults for x86 compilers |
Date: |
Thu, 1 Apr 2021 11:25:20 +0100 |
You don't usually notice this is broken on developer system on x86 as
we use the normal host compiler. However on other systems the -pc was
extraneous. Also for 32 bit only i686 packages exist now so we should
use those when available.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
tests/tcg/configure.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
index ce304f4933..af4aecf14e 100755
--- a/tests/tcg/configure.sh
+++ b/tests/tcg/configure.sh
@@ -52,7 +52,7 @@ fi
: ${cross_cc_hexagon="hexagon-unknown-linux-musl-clang"}
: ${cross_cc_cflags_hexagon="-mv67 -O2 -static"}
: ${cross_cc_hppa="hppa-linux-gnu-gcc"}
-: ${cross_cc_i386="i386-pc-linux-gnu-gcc"}
+: ${cross_cc_i386="i686-linux-gnu-gcc"}
: ${cross_cc_cflags_i386="-m32"}
: ${cross_cc_m68k="m68k-linux-gnu-gcc"}
: $(cross_cc_mips64el="mips64el-linux-gnuabi64-gcc")
@@ -69,7 +69,7 @@ fi
: ${cross_cc_cflags_sparc="-m32 -mv8plus -mcpu=ultrasparc"}
: ${cross_cc_sparc64="sparc64-linux-gnu-gcc"}
: ${cross_cc_cflags_sparc64="-m64 -mcpu=ultrasparc"}
-: ${cross_cc_x86_64="x86_64-pc-linux-gnu-gcc"}
+: ${cross_cc_x86_64="x86_64-linux-gnu-gcc"}
: ${cross_cc_cflags_x86_64="-m64"}
for target in $target_list; do
--
2.20.1
- [PATCH for 6.0-rc2 v2 00/11] various fixes, pre-PR (check-tcg, gdbstub, gitlab), Alex Bennée, 2021/04/01
- [PATCH v2 02/11] tests/docker: don't set DOCKER_REGISTRY on non-x86_64, Alex Bennée, 2021/04/01
- [PATCH v2 04/11] tests/tcg/configure.sh: make sure we pick up x86_64 cross compilers, Alex Bennée, 2021/04/01
- [PATCH v2 03/11] tests/tcg: add concept of container_hosts, Alex Bennée, 2021/04/01
- [PATCH v2 11/11] gitlab-ci.yml: Test the dtrace backend in one of the jobs, Alex Bennée, 2021/04/01
- [PATCH v2 05/11] tests/tcg/i386: expand .data sections for system tests, Alex Bennée, 2021/04/01
- [PATCH v2 01/11] tests/tcg: update the defaults for x86 compilers,
Alex Bennée <=
- [PATCH v2 09/11] docs/system/gdb.rst: Document how to debug multicore machines, Alex Bennée, 2021/04/01
- [PATCH v2 07/11] tests/tcg: relax the next step precision of the gdb sha1 test, Alex Bennée, 2021/04/01
- [PATCH v2 08/11] docs/system/gdb.rst: Add some more heading structure, Alex Bennée, 2021/04/01
- [PATCH v2 10/11] gitlab-ci.yml: Fix the filtering for the git submodules, Alex Bennée, 2021/04/01
- [PATCH v2 06/11] tests/tcg/i386: force -fno-pie for test-i386, Alex Bennée, 2021/04/01