diff mbox series

selftests/powerpc: Force ptrace tests to build -fno-pie

Message ID 20170830104512.13502-1-mikey@neuling.org (mailing list archive)
State Accepted
Commit a3c01050584da30405181505d20cd62cb42f3cdd
Headers show
Series selftests/powerpc: Force ptrace tests to build -fno-pie | expand

Commit Message

Michael Neuling Aug. 30, 2017, 10:45 a.m. UTC
Currently these tests won't build with a `--enable-default-pie`
compiler as they require r30 to be clobbered. This gives
an error:
  ptrace-tm-spd-gpr.c:41:2: error: PIC register clobbered by 'r30' in 'asm'

This forces these tests to be built no-pie.

Signed-off-by: Michael Neuling <mikey@neuling.org>
---
 tools/testing/selftests/powerpc/ptrace/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Ellerman Aug. 31, 2017, 11:36 a.m. UTC | #1
On Wed, 2017-08-30 at 10:45:12 UTC, Michael Neuling wrote:
> Currently these tests won't build with a `--enable-default-pie`
> compiler as they require r30 to be clobbered. This gives
> an error:
>   ptrace-tm-spd-gpr.c:41:2: error: PIC register clobbered by 'r30' in 'asm'
> 
> This forces these tests to be built no-pie.
> 
> Signed-off-by: Michael Neuling <mikey@neuling.org>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/a3c01050584da30405181505d20cd6

cheers
diff mbox series

Patch

diff --git a/tools/testing/selftests/powerpc/ptrace/Makefile b/tools/testing/selftests/powerpc/ptrace/Makefile
index fe6bc60dfc..8932263e5a 100644
--- a/tools/testing/selftests/powerpc/ptrace/Makefile
+++ b/tools/testing/selftests/powerpc/ptrace/Makefile
@@ -6,7 +6,7 @@  include ../../lib.mk
 
 all: $(TEST_PROGS)
 
-CFLAGS += -m64 -I../../../../../usr/include -I../tm -mhtm
+CFLAGS += -m64 -I../../../../../usr/include -I../tm -mhtm -fno-pie
 
 $(TEST_PROGS): ../harness.c ../utils.c ../lib/reg.S ptrace.h