diff options
author | Alan Modra <amodra@gmail.com> | 2011-02-09 08:18:54 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-02-09 08:18:54 +0000 |
commit | 2893311c839d2e9789c8d1a80ffa651b27a61f93 (patch) | |
tree | 3132b570284bbaddf2a67877b0a36bc1963bebbb /ld/testsuite/ld-elfvsb | |
parent | 425b145b6ec65eefa2c23131c7c9997f08ebf88c (diff) | |
download | gdb-2893311c839d2e9789c8d1a80ffa651b27a61f93.zip gdb-2893311c839d2e9789c8d1a80ffa651b27a61f93.tar.gz gdb-2893311c839d2e9789c8d1a80ffa651b27a61f93.tar.bz2 |
* ld-elfvsb/elfvsb.exp: Don't run any non-PIC tests on powerpc*-linux.
* ld-gc/gc.exp: Ensure powerpc64 test continues to fail.
* ld-srec/srec.exp: Don't edit toc on powerpc64.
Diffstat (limited to 'ld/testsuite/ld-elfvsb')
-rw-r--r-- | ld/testsuite/ld-elfvsb/elfvsb.exp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/ld/testsuite/ld-elfvsb/elfvsb.exp b/ld/testsuite/ld-elfvsb/elfvsb.exp index 9786f78..d288774 100644 --- a/ld/testsuite/ld-elfvsb/elfvsb.exp +++ b/ld/testsuite/ld-elfvsb/elfvsb.exp @@ -249,6 +249,14 @@ proc visibility_run {visibility} { set VSBCFLAG "" }}}}}}}}} + if { [istarget powerpc*-*-linux*] } { + # Testing non-PIC libraries is a waste of effort on any target. + # If you don't pass -fpic or -fPIC to gcc, gcc will assume quite + # reasonably that you are not compiling for a shared library. + # It can then make optimisations that result in shared library + # functions and variables not being overridable. Newer versions + # of gcc are more likely to do this. + } else { # Compile the main program. if ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG" $srcdir/$subdir/main.c $tmpdir/mainnp.o] { unresolved "visibility ($visibility) (non PIC)" @@ -369,8 +377,11 @@ proc visibility_run {visibility} { visibility_test $visibility vp "visibility ($visibility)" mainnp.o sh1p.o sh2p.o elfvsb } } } - } + }} + if { [istarget powerpc*-*-linux*] } { + # Don't bother. + } else { # Now do the same tests again, but this time compile main.c PIC. if ![ld_compile "$CC -g $CFLAGS $SHCFLAG $VSBCFLAG -DSHARED $picflag" $srcdir/$subdir/main.c $tmpdir/mainp.o] { unresolved "visibility ($visibility) (PIC main, non PIC so)" @@ -433,7 +444,7 @@ proc visibility_run {visibility} { } else { unresolved "visibility ($visibility) (PIC main)" } - } + }} } if [istarget mips*-*-*] { |