summaryrefslogtreecommitdiffstats
path: root/Rules.mak
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-01-14 15:52:20 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-01-14 15:52:20 +0000
commit8a7b80bbc00ead1837def5074f4c4777e67b90d3 (patch)
tree160801ed5fa07c044d940538674c2a3c61e820cb /Rules.mak
parent12d4d28ac6a1de05a9a65618692fb65d38d98d16 (diff)
downloaduClibc-alpine-8a7b80bbc00ead1837def5074f4c4777e67b90d3.tar.bz2
uClibc-alpine-8a7b80bbc00ead1837def5074f4c4777e67b90d3.tar.xz
- pull r24834 from trunk
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak8
1 files changed, 0 insertions, 8 deletions
diff --git a/Rules.mak b/Rules.mak
index e566d90c8..160f5ddae 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -422,22 +422,14 @@ endif
# Keep the check_gcc from being needlessly executed
ifndef PIEFLAG
-ifneq ($(UCLIBC_BUILD_PIE),y)
-export PIEFLAG:=
-else
export PIEFLAG:=$(call check_gcc,$(PIEFLAG_NAME),$(PICFLAG))
endif
-endif
# We need to keep track of both the CC PIE flag (above) as
# well as the LD PIE flag (below) because we can't rely on
# gcc passing -pie if we used -fPIE
ifndef LDPIEFLAG
-ifneq ($(UCLIBC_BUILD_PIE),y)
-export LDPIEFLAG:=
-else
export LDPIEFLAG:=$(shell $(LD) --help 2>/dev/null | grep -q -- -pie && echo "-Wl,-pie")
endif
-endif
# Check for AS_NEEDED support in linker script (binutils>=2.16.1 has it)
ifndef ASNEEDED