mirror of https://github.com/hak5/openwrt.git
toolchain: mark unavailable packages for musl libc
And make librt be an empty stub for musl libc. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 35810lede-17.01
parent
a2abc43104
commit
f880c4992d
|
@ -172,6 +172,7 @@ endef
|
||||||
|
|
||||||
define Package/libthread-db
|
define Package/libthread-db
|
||||||
$(call Package/libc/Default)
|
$(call Package/libc/Default)
|
||||||
|
DEPENDS:=@!USE_MUSL
|
||||||
TITLE:=POSIX thread library debugging support
|
TITLE:=POSIX thread library debugging support
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -230,6 +231,7 @@ endef
|
||||||
|
|
||||||
define Package/ldd
|
define Package/ldd
|
||||||
$(call Package/libc/Default)
|
$(call Package/libc/Default)
|
||||||
|
DEPENDS:=@!USE_MUSL
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
TITLE:=LDD trace utility
|
TITLE:=LDD trace utility
|
||||||
|
@ -258,6 +260,7 @@ endef
|
||||||
|
|
||||||
define Package/ldconfig
|
define Package/ldconfig
|
||||||
$(call Package/libc/Default)
|
$(call Package/libc/Default)
|
||||||
|
DEPENDS:=@!USE_MUSL
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
TITLE:=Shared library path configuration
|
TITLE:=Shared library path configuration
|
||||||
|
@ -479,10 +482,12 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
||||||
|
|
||||||
define Package/librt/install
|
define Package/librt/install
|
||||||
$(INSTALL_DIR) $(1)/lib
|
$(INSTALL_DIR) $(1)/lib
|
||||||
|
ifneq ($(CONFIG_USE_MUSL),y)
|
||||||
$(CP) \
|
$(CP) \
|
||||||
$(TOOLCHAIN_DIR)/lib/librt.so.* \
|
$(TOOLCHAIN_DIR)/lib/librt.so.* \
|
||||||
$(TOOLCHAIN_DIR)/lib/librt-$(LIBC_SO_VERSION).so \
|
$(TOOLCHAIN_DIR)/lib/librt-$(LIBC_SO_VERSION).so \
|
||||||
$(1)/lib/
|
$(1)/lib/
|
||||||
|
endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ldd/install
|
define Package/ldd/install
|
||||||
|
|
Loading…
Reference in New Issue