diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-12-01 14:01:48 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-12-01 14:01:48 +0000 |
commit | 6b43a34c3ccb186dcac709bc1b8d6adce91b14c7 (patch) | |
tree | 9134dfd1f481988a0c7cbd71caf20d737001c676 | |
parent | ce9315a9f572712e68e4ccba0475e9ad37d556eb (diff) | |
download | gcc-6b43a34c3ccb186dcac709bc1b8d6adce91b14c7.tar.gz |
* configure.tgt (mips-sgi-irix6*): Add -lpthread to XLDFLAGS.
From-SVN: r167333
-rw-r--r-- | libgomp/ChangeLog | 4 | ||||
-rw-r--r-- | libgomp/configure.tgt | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 93672ff4559..0318e388ec2 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,5 +1,9 @@ 2010-12-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + * configure.tgt (mips-sgi-irix6*): Add -lpthread to XLDFLAGS. + +2010-12-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + * testsuite/libgomp.fortran/vla8.f90: Use dg-timeout-factor 2.0. 2010-11-24 Iain Sandoe <iains@gcc.gnu.org> diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt index 6ab9e4d9141..4a564452cef 100644 --- a/libgomp/configure.tgt +++ b/libgomp/configure.tgt @@ -124,6 +124,10 @@ case "${target}" in config_path="bsd posix" ;; + mips-sgi-irix6*) + # Need to link with -lpthread so libgomp.so is self-contained. + XLDFLAGS="${XLDFLAGS} -lpthread" + ;; *) ;; |