diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-05-02 23:30:38 +0200 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2002-05-02 14:30:38 -0700 |
commit | 0a2950527d2e05cc4e1bfdcb7c3f706428eba01c (patch) | |
tree | 29ee7e1ae73e76ca945a42250067eb0834bc6c2b /gcc/config.gcc | |
parent | 842d5d6cbf5fd19754ec58c1159024092a278115 (diff) | |
download | gcc-0a2950527d2e05cc4e1bfdcb7c3f706428eba01c.zip gcc-0a2950527d2e05cc4e1bfdcb7c3f706428eba01c.tar.gz gcc-0a2950527d2e05cc4e1bfdcb7c3f706428eba01c.tar.bz2 |
re PR target/6540 (sparc-sun-solaris2.7 (perhaps all bi-arch sparc) fail libstdc++-v3 18_support/numeric_limits.cc)
2002-05-02 Jakub Jelinek <jakub@redhat.com>
PR target/6540
* config.gcc (sparc*-*-solaris2*): Set float_format to i128.
* config/float-sparc.h: Assume 128-bit long double if
__LONG_DOUBLE_128__ is defined.
From-SVN: r53069
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index d877098..d9c12fa 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3179,7 +3179,7 @@ sparc64-*-solaris2* | sparcv9-*-solaris2*) tmake_file="$tmake_file t-slibgcc-sld" fi extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o" - float_format=sparc + float_format=i128 if test x${enable_threads} = x ; then enable_threads=$have_pthread_h if test x${enable_threads} = x ; then @@ -3205,14 +3205,7 @@ sparc-hal-solaris2*) tmake_file="$tmake_file t-slibgcc-sld" fi extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o" - case $machine in - *-*-solaris2.[0-4]) - float_format=i128 - ;; - *) - float_format=sparc - ;; - esac + float_format=i128 thread_file='solaris' ;; sparc-*-solaris2*) @@ -3245,14 +3238,7 @@ sparc-*-solaris2*) esac xm_defines=POSIX extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o" - case $machine in - *-*-solaris2.[0-4]) - float_format=i128 - ;; - *) - float_format=sparc - ;; - esac + float_format=i128 if test x${enable_threads} = x; then enable_threads=$have_pthread_h if test x${enable_threads} = x; then |