From: Adhemerval Zanella Date: Thu, 4 Jun 2020 11:54:08 +0000 (-0300) Subject: powerpc: Fix powerpc64le due a7a3435c9a X-Git-Tag: glibc-2.32~261 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f10ff02cb04c2b1e031d7d3ba0f99e906699126;p=thirdparty%2Fglibc.git powerpc: Fix powerpc64le due a7a3435c9a The build uses an undefined macro evaluation for fmaf128 build. For now set USE_FMAL_BUILTIN and USE_FMAF128_BUILTIN to 0. Checked with a build for: powerpc64le-linux-gnu-power9-disable-multi-arch powerpc64le-linux-gnu-power9 powerpc64le-linux-gnu powerpc64-linux-gnu-power8 powerpc64-linux-gnu powerpc-linux-gnu-power4 powerpc-linux-gnu --- diff --git a/sysdeps/powerpc/fpu/math-use-builtins.h b/sysdeps/powerpc/fpu/math-use-builtins.h index 4780934379b..957216a191d 100644 --- a/sysdeps/powerpc/fpu/math-use-builtins.h +++ b/sysdeps/powerpc/fpu/math-use-builtins.h @@ -65,5 +65,7 @@ #define USE_FMA_BUILTIN 1 #define USE_FMAF_BUILTIN 1 +#define USE_FMAL_BUILTIN 0 +#define USE_FMAF128_BUILTIN 0 #endif