From: Iain Sandoe Date: Sun, 17 Mar 2024 03:04:44 +0000 (+0000) Subject: Darwin: Fix bootstrap break on X86. X-Git-Tag: releases/gcc-12.4.0~348 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f84bca11b1d4a504da699d02349d949c11d59bd7;p=thirdparty%2Fgcc.git Darwin: Fix bootstrap break on X86. The changes in r12-9536-gefcca6481eab18 mangled the whitespace in the ENDFILE_SPEC i386/darwin.h leading to a bootstrap fail. gcc/ChangeLog: * config/i386/darwin.h (ENDFILE_SPEC): Fix whitespace. Signed-off-by: Iain Sandoe --- diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index 2f773924d6e0..12cdc34a19ec 100644 --- a/gcc/config/i386/darwin.h +++ b/gcc/config/i386/darwin.h @@ -109,8 +109,8 @@ along with GCC; see the file COPYING3. If not see "%{!force_cpusubtype_ALL:-force_cpusubtype_ALL} " #undef ENDFILE_SPEC -#define ENDFILE_SPEC -\ "%{mdaz-ftz:crtfastmath.o%s;Ofast|ffast-math|funsafe-math-optimizations:%{!mno-daz-ftz:crtfastmath.o%s}} \ +#define ENDFILE_SPEC \ + "%{mdaz-ftz:crtfastmath.o%s;Ofast|ffast-math|funsafe-math-optimizations:%{!mno-daz-ftz:crtfastmath.o%s}} \ %{mpc32:crtprec32.o%s} \ %{mpc64:crtprec64.o%s} \ %{mpc80:crtprec80.o%s}" TM_DESTRUCTOR