Skip to content
Snippets Groups Projects
Commit 8a9fd81e authored by Steven Barth's avatar Steven Barth
Browse files

uclibc++: only disable SSP for ppc


Signed-off-by: default avatarSteven Barth <steven@midlink.org>

SVN-Revision: 46067
parent 38da12f7
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,11 @@ UCLIBC_TARGET_ARCH:=$(shell echo $(ARCH) | sed -e s'/-.*//' \ ...@@ -44,7 +44,11 @@ UCLIBC_TARGET_ARCH:=$(shell echo $(ARCH) | sed -e s'/-.*//' \
-e 's/mipsel.*/mips/' \ -e 's/mipsel.*/mips/' \
) )
TARGET_CFLAGS += $(FPIC) -fno-stack-protector ifeq ($(ARCH),powerpc)
TARGET_CFLAGS += -fno-stack-protector
endif
TARGET_CFLAGS += $(FPIC)
ifneq ($(CONFIG_CCACHE),) ifneq ($(CONFIG_CCACHE),)
TARGET_CXX=$(TARGET_CXX_NOCACHE) TARGET_CXX=$(TARGET_CXX_NOCACHE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment