diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-28 09:37:12 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-28 09:37:12 +0000 |
commit | a54f3ef35dde9f1879f0f1f1a4b919a61f2feca2 (patch) | |
tree | a3d83e81842fd7780505d7e39b94d7db7e1ddb6e /gcc/configure | |
parent | efaf8a8606bddd9883c16f56a8abfb33a072fe56 (diff) | |
download | gcc-a54f3ef35dde9f1879f0f1f1a4b919a61f2feca2.tar.gz |
* configure.ac (gcc_cv_ld_static_dynamic): IRIX 6 ld supports
-Bstatic/-Bdynamic.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169353 138bc75d-0d04-0410-961f-82ee72b054a4
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 7a3e1e1d587..6bde5f9e487 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 |