From: Felix Fietkau Date: Tue, 13 Dec 2016 12:15:05 +0000 (+0100) Subject: swconfig: replace the shared library with a static one X-Git-Tag: v17.01.0-rc1~537 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=e82c8d6e20ab34f61621ec9ab7d16959d268124d swconfig: replace the shared library with a static one Reduces binary size Signed-off-by: Felix Fietkau --- diff --git a/package/network/config/swconfig/Makefile b/package/network/config/swconfig/Makefile index d1c8fd7b5e..e4a00d6d63 100644 --- a/package/network/config/swconfig/Makefile +++ b/package/network/config/swconfig/Makefile @@ -42,13 +42,12 @@ define Build/InstallDev $(CP) $(PKG_BUILD_DIR)/swlib.h $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_BUILD_DIR)/libsw.so $(1)/usr/lib/ + $(CP) $(PKG_BUILD_DIR)/libsw.a $(1)/usr/lib/ endef define Package/swconfig/install $(INSTALL_DIR) $(1)/sbin $(1)/lib/network $(INSTALL_BIN) $(PKG_BUILD_DIR)/swconfig $(1)/sbin/swconfig - $(INSTALL_BIN) $(PKG_BUILD_DIR)/libsw.so $(1)/lib $(INSTALL_DATA) ./files/switch.sh $(1)/lib/network/ endef diff --git a/package/network/config/swconfig/src/Makefile b/package/network/config/swconfig/src/Makefile index 1176bf0e40..e972a44397 100644 --- a/package/network/config/swconfig/src/Makefile +++ b/package/network/config/swconfig/src/Makefile @@ -8,8 +8,9 @@ all: swconfig %.o: %.c $(CC) $(CFLAGS) -fPIC -c -o $@ $^ -libsw.so: swlib.o - $(CC) $(CFLAGS) -fPIC -shared -o $@ swlib.o +libsw.a: swlib.o + $(AR) rcu $@ swlib.o + $(RANLIB) $@ -swconfig: libsw.so cli.o uci.o +swconfig: libsw.a cli.o uci.o $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -L./ -lsw