diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-08-06 22:10:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-08-06 22:10:20 +0000 |
commit | 14ac8769b2833e62eea2248296bc60e536aefe00 (patch) | |
tree | 1d880c5a382d0239704e3a5b67f55ebdbb03d22f | |
parent | ce8903f1ce41b0ec8b472a430db0bf542905c5e1 (diff) | |
download | upstream-14ac8769b2833e62eea2248296bc60e536aefe00.tar.gz upstream-14ac8769b2833e62eea2248296bc60e536aefe00.tar.bz2 upstream-14ac8769b2833e62eea2248296bc60e536aefe00.zip |
add a variable that contains the proper architecture-dependent -fPIC/-fpic cflag for building shared libraries
SVN-Revision: 12224
-rw-r--r-- | rules.mk | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -39,6 +39,12 @@ SUBDIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR}) OPTIMIZE_FOR_CPU=$(ARCH) +ifeq ($(ARCH),powerpc) + FPIC:=-fPIC +else + FPIC:=-fpic +endif + DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl) BIN_DIR:=$(TOPDIR)/bin INCLUDE_DIR:=$(TOPDIR)/include |