diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2023-10-09 17:40:46 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2023-10-11 08:46:33 +0100 |
| commit | e0f8951235b991eaa7a0e617976848b88d84c360 (patch) | |
| tree | 6ef4170c6ae396493365984d28515fe05ce279f7 | |
| parent | 42ede11aeeb1c87e8121bbaafa3aa7b242e99a25 (diff) | |
| download | focaccia-qemu-e0f8951235b991eaa7a0e617976848b88d84c360.tar.gz focaccia-qemu-e0f8951235b991eaa7a0e617976848b88d84c360.zip | |
configure: remove gcc version suffixes
The modern packaging of cross GCC's doesn't need the explicit version number at the end. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231009164104.369749-8-alex.bennee@linaro.org>
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 5c04e63bab..8fada85a71 100755 --- a/configure +++ b/configure @@ -1334,7 +1334,7 @@ probe_target_compiler() { # We don't have any bigendian build tools so we only use this for AArch64 container_image=debian-arm64-cross container_cross_prefix=aarch64-linux-gnu- - container_cross_cc=${container_cross_prefix}gcc-10 + container_cross_cc=${container_cross_prefix}gcc ;; alpha) container_image=debian-alpha-cross @@ -1397,7 +1397,7 @@ probe_target_compiler() { ppc) container_image=debian-powerpc-test-cross container_cross_prefix=powerpc-linux-gnu- - container_cross_cc=${container_cross_prefix}gcc-10 + container_cross_cc=${container_cross_prefix}gcc ;; ppc64|ppc64le) container_image=debian-powerpc-test-cross |