aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-28 21:47:59 +0000
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>2010-01-28 21:47:59 +0000
commit4efe8a437b9b70c8455e3b205b25029cb303d313 (patch)
treeb44093d5e0850facbc0fbba04332428798651848 /libgomp
parent00a48bf9ff4b97310d1b8743e796d73600555425 (diff)
2010-01-28 Steve Ellcey <sje@cup.hp.com>
* configure.tgt (*-*-hpux*): Add -frandom-seed flag. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog4
-rw-r--r--libgomp/configure.tgt16
2 files changed, 17 insertions, 3 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index eab2079b699..246d411384b 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-28 Steve Ellcey <sje@cup.hp.com>
+
+ * configure.tgt (*-*-hpux*): Add -frandom-seed flag.
+
2010-01-26 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Test for executability of _the first word_ of GFORTRAN.
diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
index d66899fbf5f..427d8d3772d 100644
--- a/libgomp/configure.tgt
+++ b/libgomp/configure.tgt
@@ -97,9 +97,19 @@ fi
# Other system configury
case "${target}" in
- *-*-hpux11*)
- # HPUX v11.x requires -lrt to resolve sem_init in libgomp.la
- XLDFLAGS="${XLDFLAGS} -lrt"
+ *-*-hpux*)
+ case "${target}" in
+ *-*-hpux11*)
+ # HPUX v11.x requires -lrt to resolve sem_init in libgomp.la
+ XLDFLAGS="${XLDFLAGS} -lrt"
+ ;;
+ esac
+ case "${target}" in
+ hppa[12]*-*-hpux*)
+ # PA 32 HP-UX needs -frandom-seed for bootstrap compare.
+ XCFLAGS="${XCFLAGS} -frandom-seed=fixed-seed"
+ ;;
+ esac
;;
*-*-mingw32*)