aboutsummaryrefslogtreecommitdiff
path: root/libgomp/configure.tgt
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-28 21:23:14 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-28 21:23:14 +0000
commit4fda895aeaa6fa33f23ddd058282b692a147d640 (patch)
tree184f01104b6f7c1b0e1f0834f1f1caba8376a5e5 /libgomp/configure.tgt
parent20c3dd321a21c3bb8a4239f7df7a48a79167ac85 (diff)
2015-01-28 Jack Howarth <howarth.at.gcc@gmail.com>
PR libgomp/64635 * configure.tgt (*-*-aix*): Use config_path "aix posix". (*-*-darwin*): Use config_path "bsd darwin posix". (*-*-hpux*): Use config_path "hpux posix". * target.c: Add include of plugin-suffix.h and use SONAME_SUFFIX macro. * config/aix/plugin-suffix.h: New file. * config/darwin/plugin-suffix.h: New file. * config/hpux/plugin-suffix.h: New file. * config/posix/plugin-suffix.h: New file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/configure.tgt')
-rw-r--r--libgomp/configure.tgt7
1 files changed, 6 insertions, 1 deletions
diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
index 2ef49264e54..7c06450e0db 100644
--- a/libgomp/configure.tgt
+++ b/libgomp/configure.tgt
@@ -113,6 +113,7 @@ fi
case "${target}" in
*-*-hpux*)
+ config_path="hpux posix"
case "${target}" in
*-*-hpux11*)
# HPUX v11.x requires -lrt to resolve sem_init in libgomp.la
@@ -132,7 +133,7 @@ case "${target}" in
;;
*-*-darwin*)
- config_path="bsd posix"
+ config_path="bsd darwin posix"
;;
*-*-freebsd*)
@@ -140,6 +141,10 @@ case "${target}" in
XLDFLAGS="${XLDFLAGS} -lpthread"
;;
+ *-*-aix*)
+ config_path="aix posix"
+ ;;
+
*)
;;