From: Jakub Jelinek Date: Wed, 17 Mar 2004 15:15:32 +0000 (+0100) Subject: t-linux64 (bispecs): Don't add -mlong-double-128 for 32-bit builds when defaulting... X-Git-Tag: releases/gcc-4.0.0~9344 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb6df2725a4bb49fbbf4f9a7e92edee16dd1eaea;p=thirdparty%2Fgcc.git t-linux64 (bispecs): Don't add -mlong-double-128 for 32-bit builds when defaulting to 32-bit. * config/rs6000/t-linux64 (bispecs): Don't add -mlong-double-128 for 32-bit builds when defaulting to 32-bit. From-SVN: r79587 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ea5a37daabe7..589147c807ba 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-03-17 Jakub Jelinek + + * config/rs6000/t-linux64 (bispecs): Don't add -mlong-double-128 for + 32-bit builds when defaulting to 32-bit. + 2004-03-17 Jan Hubicka * cfgrtl.c (rtl_create_basic_block): Pre-allocate basic_block_info diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64 index 0e86f5f26ff0..77ba93e91525 100644 --- a/gcc/config/rs6000/t-linux64 +++ b/gcc/config/rs6000/t-linux64 @@ -37,5 +37,8 @@ fp-bit32.c: $(srcdir)/config/fp-bit.c mklibgcc: bispecs bispecs: specs - sed -e '/cc1_options/{ n; s/$$/ %{!m32:-mlong-double-128}/; }' < specs > $@ - + if [ x`$(GCC_FOR_TARGET) -print-multi-os-directory` = x../lib ]; then \ + sed -e '/cc1_options/{ n; s/$$/ %{m64:-mlong-double-128}/; }' < specs > $@; \ + else \ + sed -e '/cc1_options/{ n; s/$$/ %{!m32:-mlong-double-128}/; }' < specs > $@; \ + fi