diff options
author | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-21 21:23:34 +0000 |
---|---|---|
committer | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-21 21:23:34 +0000 |
commit | 4b6a79235f468fdc9f91f05f01a73357e4e2975e (patch) | |
tree | 60bde344dea4694f660a62084cef040bda37bb0c /libiberty | |
parent | d3bc173dbecf38ba322bbd9210bf3ca553b61f03 (diff) | |
download | gcc-4b6a79235f468fdc9f91f05f01a73357e4e2975e.tar.gz |
2008-04-21 Aurelien Jarno <aurelien@aurel32.net>
* libiberty/configure.ac: use -fPIC on Linux/MIPS hosts.
* libiberty/configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134534 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rwxr-xr-x | libiberty/configure | 1 | ||||
-rw-r--r-- | libiberty/configure.ac | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 80718252984..18d77077aca 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2008-04-21 Aurelien Jarno <aurelien@aurel32.net> + + * libiberty/configure.ac: use -fPIC on Linux/MIPS hosts. + * libiberty/configure: Regenerate. + 2008-04-18 Kris Van Hees <kris.van.hees@oracle.com> * testsuite/demangle-expected: Added tests for char16_t and char32_t. diff --git a/libiberty/configure b/libiberty/configure index f47833ad97b..83e55b8eb6c 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -3729,6 +3729,7 @@ if [ "${shared}" = "yes" ]; then i[34567]86-*-* | x86_64-*-*) PICFLAG=-fpic ;; m68k-*-*) PICFLAG=-fpic ;; + mips*-*-linux) PICFLAG=-fPIC ;; powerpc*-*-aix*) ;; powerpc*-*-*) PICFLAG=-fPIC ;; sparc*-*-*) case "${CFLAGS}" in diff --git a/libiberty/configure.ac b/libiberty/configure.ac index f5df5582b36..419351bbb93 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -208,6 +208,7 @@ if [[ "${shared}" = "yes" ]]; then i[[34567]]86-*-* | x86_64-*-*) PICFLAG=-fpic ;; m68k-*-*) PICFLAG=-fpic ;; + mips*-*-linux) PICFLAG=-fPIC ;; powerpc*-*-aix*) ;; powerpc*-*-*) PICFLAG=-fPIC ;; sparc*-*-*) case "${CFLAGS}" in |