summaryrefslogtreecommitdiff
path: root/sysdeps/arm
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-09-29 16:20:26 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-09-29 16:20:39 -0700
commitf6c5e5bce0a71680f90a4d6983b7233d461b5f86 (patch)
treecd502ba500a8748ce9a98243e627b73904da36e6 /sysdeps/arm
parent2f92505d207aa2baca29f96bf1a1ea0baea3787e (diff)
arm: Check PIC instead of SHARED in start.S
Since start.o may be compiled as PIC, we should check PIC instead of SHARED. * sysdeps/arm/start.S (_start): Check PIC instead of SHARED.
Diffstat (limited to 'sysdeps/arm')
-rw-r--r--sysdeps/arm/start.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/arm/start.S b/sysdeps/arm/start.S
index 4973878f05..a5c678b6c5 100644
--- a/sysdeps/arm/start.S
+++ b/sysdeps/arm/start.S
@@ -89,7 +89,7 @@ _start:
/* Push rtld_fini */
push { a1 }
-#ifdef SHARED
+#ifdef PIC
ldr sl, .L_GOT
adr a4, .L_GOT
add sl, sl, a4
@@ -127,7 +127,7 @@ _start:
/* should never get here....*/
bl abort
-#ifdef SHARED
+#ifdef PIC
.align 2
.L_GOT:
.word _GLOBAL_OFFSET_TABLE_ - .L_GOT