diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2011-01-28 09:37:12 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2011-01-28 09:37:12 +0000 |
commit | c9f58b9addbff701efacd96907ea7bf59e3f9361 (patch) | |
tree | a3d83e81842fd7780505d7e39b94d7db7e1ddb6e /gcc/configure | |
parent | 51677e03380ffa8b7325c61bed33cbaa659a9a5f (diff) | |
download | gcc-c9f58b9addbff701efacd96907ea7bf59e3f9361.zip gcc-c9f58b9addbff701efacd96907ea7bf59e3f9361.tar.gz gcc-c9f58b9addbff701efacd96907ea7bf59e3f9361.tar.bz2 |
configure.ac (gcc_cv_ld_static_dynamic): IRIX 6 ld supports -Bstatic/-Bdynamic.
* configure.ac (gcc_cv_ld_static_dynamic): IRIX 6 ld supports
-Bstatic/-Bdynamic.
* configure: Regenerate.
From-SVN: r169353
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/configure b/gcc/configure index 7a3e1e1..6bde5f9 100755 --- a/gcc/configure +++ b/gcc/configure @@ -23062,6 +23062,10 @@ elif test x$gcc_cv_ld != x; then gcc_cv_ld_static_dynamic=yes else case "$target" in + # IRIX 6 ld supports -Bstatic/-Bdynamic. + mips-sgi-irix6*) + gcc_cv_ld_static_dynamic=yes + ;; # Solaris 2 ld always supports -Bstatic/-Bdynamic. *-*-solaris2*) gcc_cv_ld_static_dynamic=yes |