Skip to content

Commit

Permalink
2010-01-28 Steve Ellcey <sje@cup.hp.com>
Browse files Browse the repository at this point in the history
	* configure.tgt (*-*-hpux*): Add -frandom-seed flag.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156334 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
sje committed Jan 28, 2010
1 parent 00a48bf commit 4efe8a4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions libgomp/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
16 changes: 13 additions & 3 deletions libgomp/configure.tgt
Original file line number Diff line number Diff line change
Expand Up @@ -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*)
Expand Down

0 comments on commit 4efe8a4

Please sign in to comment.