Message ID | 20240317032544.47851-1-iain@sandoe.co.uk |
---|---|
State | New |
Headers | show |
Series | [pushed] Darwin: Fix bootstrap break on X86. | expand |
diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index 2f773924d6e..12cdc34a19e 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
Tested on x86_64-darwin21, pushed to the branch, thanks Iain --- 8< --- 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 <iain@sandoe.co.uk> --- gcc/config/i386/darwin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)