[PATCH] aarch64: Check PIC instead of SHARED in start.S
H.J. Lu
hjl.tools@gmail.com
Fri Sep 29 21:32:00 GMT 2017
Since start.o may be compiled as PIC, we should check PIC instead of
SHARED.
OK for master?
* sysdeps/aarch64/start.S (_start): Check PIC instead of SHARED.
---
sysdeps/aarch64/start.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sysdeps/aarch64/start.S b/sysdeps/aarch64/start.S
index c20433ad73..7a946506f2 100644
--- a/sysdeps/aarch64/start.S
+++ b/sysdeps/aarch64/start.S
@@ -60,7 +60,7 @@ _start:
/* Setup stack limit in argument register */
mov x6, sp
-#ifdef SHARED
+#ifdef PIC
adrp x0, :got:main
ldr PTR_REG (0), [x0, #:got_lo12:main]
--
2.13.6
More information about the Libc-alpha
mailing list