diff options
author | Jakub Jelinek <jakub@redhat.com> | 2017-04-27 22:03:01 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2017-04-27 22:03:01 +0200 |
commit | f49215b10cb70ee28f041c6b5088b55b3f33afb9 (patch) | |
tree | 11787202c6192b85ef5c7bea8236d9af14c4cc7e | |
parent | 1035527b7836689843c89a9620b043f467344327 (diff) | |
download | gcc-f49215b10cb70ee28f041c6b5088b55b3f33afb9.zip gcc-f49215b10cb70ee28f041c6b5088b55b3f33afb9.tar.gz gcc-f49215b10cb70ee28f041c6b5088b55b3f33afb9.tar.bz2 |
re PR bootstrap/80531 (RC1 bootstrap comparison failure)
PR bootstrap/80531
* configure.tgt (*-*-aix*): Add -frandom-seed=$@ to XCFLAGS to avoid
bootstrap compare failures.
From-SVN: r247350
-rw-r--r-- | libgomp/ChangeLog | 6 | ||||
-rw-r--r-- | libgomp/configure.tgt | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 633ba37..ca29cf7 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,9 @@ +2017-04-27 Jakub Jelinek <jakub@redhat.com> + + PR bootstrap/80531 + * configure.tgt (*-*-aix*): Add -frandom-seed=$@ to XCFLAGS to avoid + bootstrap compare failures. + 2017-04-20 Alexander Monakov <amonakov@ispras.ru> * testsuite/libgomp.c/target-36.c: New testcase. diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt index 77e73f0..74d95a5 100644 --- a/libgomp/configure.tgt +++ b/libgomp/configure.tgt @@ -149,6 +149,8 @@ case "${target}" in config_path="posix" # Need to link with -lpthread so libgomp.so is self-contained. XLDFLAGS="${XLDFLAGS} -lpthread" + # AIX needs -frandom-seed for bootstrap compare. + XCFLAGS="${XCFLAGS} -frandom-seed=\$@" ;; nvptx*-*-*) |