mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 03:41:52 +02:00
use $(FPIC) in a few places where it matters
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12225 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
05e6976da2
commit
78202d191b
@ -30,6 +30,7 @@ define Package/libgmp/description
|
||||
signed integers, rational numbers, and floating point numbers.
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
CONFIGURE_VARS += CC="$(TARGET_CROSS)gcc"
|
||||
CONFIGURE_ARGS += \
|
||||
--enable-shared \
|
||||
|
@ -38,6 +38,7 @@ define Package/ipkg/description
|
||||
ipkg knows how to install both .ipk and .deb packages.
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
CONFIGURE_ARGS += $(DISABLE_LARGEFILE)
|
||||
|
||||
define Build/Compile
|
||||
|
@ -217,6 +217,8 @@ define Build/Configure
|
||||
clean
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
|
@ -29,7 +29,7 @@ define Package/libnl/description
|
||||
This package contains a library for applications dealing with netlink sockets
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += -ffunction-sections
|
||||
TARGET_CFLAGS += -ffunction-sections $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default)
|
||||
|
@ -30,6 +30,8 @@ define Package/libpcap/description
|
||||
packet capture.
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
|
@ -24,14 +24,6 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
ifeq ($(ARCH),powerpc)
|
||||
FPIC:=-fPIC
|
||||
endif
|
||||
ifeq ($(ARCH),x86_64)
|
||||
FPIC:=-fPIC
|
||||
endif
|
||||
|
||||
|
||||
define Package/lua/Default
|
||||
SUBMENU:=LUA
|
||||
SECTION:=lang
|
||||
@ -95,7 +87,7 @@ endef
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += -DLUA_USE_LINUX
|
||||
TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
@ -104,7 +96,7 @@ define Build/Compile
|
||||
AR="$(TARGET_CROSS)ar rcu" \
|
||||
RANLIB="$(TARGET_CROSS)ranlib" \
|
||||
INSTALL_ROOT=/usr \
|
||||
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS) $(FPIC)" \
|
||||
CFLAGS="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \
|
||||
MYLDFLAGS="$(TARGET_LDFLAGS)" \
|
||||
PKG_VERSION=$(PKG_VERSION) \
|
||||
all linux
|
||||
|
@ -28,6 +28,8 @@ endef
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
|
@ -29,6 +29,8 @@ define Build/Prepare
|
||||
$(CP) ./src/* $(PKG_BUILD_DIR)
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
define Build/InstallDev
|
||||
mkdir -p $(1)/usr/lib
|
||||
$(CP) $(PKG_BUILD_DIR)/libnvram*.so $(1)/usr/lib/
|
||||
|
@ -89,6 +89,8 @@ define Build/Configure
|
||||
)
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
|
@ -36,6 +36,7 @@ define Package/opkg/description
|
||||
opkg knows how to install both .ipk and .deb packages.
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/lib
|
||||
EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
|
||||
|
||||
|
@ -47,6 +47,7 @@ endef
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
UCI_MAKEOPTS = \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
COPTS="$(TARGET_CFLAGS)" \
|
||||
|
@ -29,7 +29,7 @@ define Build/Configure
|
||||
(cd $(PKG_BUILD_DIR); \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
|
||||
CFLAGS="$(TARGET_CFLAGS) -fPIC $(CFLAGS_LARGEFILE)" \
|
||||
CFLAGS="$(TARGET_CFLAGS) $(FPIC) $(CFLAGS_LARGEFILE)" \
|
||||
UNAME_S="Linux" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
|
Loading…
Reference in New Issue
Block a user