diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 23:32:13 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 23:32:13 +0000 |
commit | db09292e79ecb53a7e05fe5729260d9305582b94 (patch) | |
tree | d2cd5b5ada23b5c5697dd5e6a9fd36bada66d2fd /boehm-gc | |
parent | e07ee0de593e559ab1d94d0cf5edd4cf1bd0a9f1 (diff) | |
download | gcc-db09292e79ecb53a7e05fe5729260d9305582b94.tar.gz |
* configure.ac (machdep): Use sparc_mach_dep.lo on
sparc64-sun-solaris2.* too.
(Solaris gcc optimization fix): Disable on sparc*-sun-solaris2.*.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91047 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 7 | ||||
-rwxr-xr-x | boehm-gc/configure | 4 | ||||
-rw-r--r-- | boehm-gc/configure.ac | 6 |
3 files changed, 12 insertions, 5 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index afbaed422e4..a00850ac657 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,5 +1,12 @@ 2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr> + * configure.ac (machdep): Use sparc_mach_dep.lo on + sparc64-sun-solaris2.* too. + (Solaris gcc optimization fix): Disable on sparc*-sun-solaris2.*. + * configure: Regenerate. + +2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr> + PR target/18444 * configure.ac (threading): Accept 'posix95'. * configure: Regenerate. diff --git a/boehm-gc/configure b/boehm-gc/configure index ebf3bdd2f1a..b950a0706c4 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -5768,7 +5768,7 @@ cat >>confdefs.h <<\_ACEOF _ACEOF ;; - sparc-sun-solaris2.*) + sparc*-sun-solaris2.*) machdep="sparc_mach_dep.lo" ;; ia64-*-*) @@ -6446,7 +6446,7 @@ fi echo "$as_me:$LINENO: checking whether Solaris gcc optimization fix is necessary" >&5 echo $ECHO_N "checking whether Solaris gcc optimization fix is necessary... $ECHO_C" >&6 case "$host" in - sparc-sun-solaris2*|*aix*) + *aix*) if test "$GCC" = yes; then echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 53a71a394e6..7d1c6e3df1b 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -336,7 +336,7 @@ case "$host" in machdep="sparc_mach_dep.lo" AC_DEFINE(SUNOS53_SHARED_LIB,1,[Avoid Solaris 5.3 dynamic library bug]) ;; - sparc-sun-solaris2.*) + sparc*-sun-solaris2.*) machdep="sparc_mach_dep.lo" ;; ia64-*-*) @@ -378,10 +378,10 @@ fi dnl As of 4.13a2, the collector will not properly work on Solaris when dnl built with gcc and -O. So we remove -O in the appropriate case. -dnl +dnl Not needed anymore on Solaris. AC_MSG_CHECKING(whether Solaris gcc optimization fix is necessary) case "$host" in - sparc-sun-solaris2*|*aix*) + *aix*) if test "$GCC" = yes; then AC_MSG_RESULT(yes) new_CFLAGS= |