mirror of git://gcc.gnu.org/git/gcc.git
* configure.tgt (*-*-freebsd*): Add -lpthread to XLDFLAGS.
From-SVN: r168858
This commit is contained in:
parent
fc1e05d293
commit
f1d4ab26bc
|
@ -1,3 +1,7 @@
|
||||||
|
2011-01-16 Gerald Pfeifer
|
||||||
|
|
||||||
|
* configure.tgt (*-*-freebsd*): Add -lpthread to XLDFLAGS.
|
||||||
|
|
||||||
2010-12-14 Jakub Jelinek <jakub@redhat.com>
|
2010-12-14 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR fortran/46874
|
PR fortran/46874
|
||||||
|
|
|
@ -124,6 +124,11 @@ case "${target}" in
|
||||||
config_path="bsd posix"
|
config_path="bsd posix"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
*-*-freebsd*)
|
||||||
|
# Need to link with -lpthread so libgomp.so is self-contained.
|
||||||
|
XLDFLAGS="${XLDFLAGS} -lpthread"
|
||||||
|
;;
|
||||||
|
|
||||||
mips-sgi-irix6*)
|
mips-sgi-irix6*)
|
||||||
# Need to link with -lpthread so libgomp.so is self-contained.
|
# Need to link with -lpthread so libgomp.so is self-contained.
|
||||||
XLDFLAGS="${XLDFLAGS} -lpthread"
|
XLDFLAGS="${XLDFLAGS} -lpthread"
|
||||||
|
|
Loading…
Reference in New Issue