|
From: Andreas A. <ar...@so...> - 2023-05-11 10:52:07
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=053643239ed39e4f6137e78dfd3fd8e259f7827c commit 053643239ed39e4f6137e78dfd3fd8e259f7827c Author: Andreas Arnez <ar...@li...> Date: Thu Sep 1 15:03:01 2022 +0200 Bug 465782 - s390x: Drop -mzarch -march=z900 from assembler options The -mzarch flag is unsupported by Clang, and it is redundant on 64-bit build systems. Remove it. Also remove '-march=z900', since it is unsupported by Clang as well. It would only be needed on build systems with a default architecture lower than z900. Such systems are out of service for some time now. Diff: --- Makefile.all.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.all.am b/Makefile.all.am index 1de1f13a7e..94d65f2ccb 100755 --- a/Makefile.all.am +++ b/Makefile.all.am @@ -270,7 +270,7 @@ AM_CCASFLAGS_AMD64_DARWIN = -arch x86_64 -g AM_FLAG_M3264_S390X_LINUX = @FLAG_M64@ AM_CFLAGS_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) -fomit-frame-pointer AM_CFLAGS_PSO_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE) -AM_CCASFLAGS_S390X_LINUX = @FLAG_M64@ -g -mzarch -march=z900 +AM_CCASFLAGS_S390X_LINUX = @FLAG_M64@ -g AM_FLAG_M3264_MIPS32_LINUX = @FLAG_M32@ AM_CFLAGS_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) |