projects
/
openwrt
/
staging
/
zorun.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6639316
)
toolchain: add a symlink for musl softfloat ldso to the path where our gcc expects it
author
Felix Fietkau
<
[email protected]
>
Thu, 20 Mar 2014 13:51:47 +0000
(13:51 +0000)
committer
Felix Fietkau
<
[email protected]
>
Thu, 20 Mar 2014 13:51:47 +0000
(13:51 +0000)
Signed-off-by: Felix Fietkau <
[email protected]
>
SVN-Revision: 39966
package/libs/toolchain/Makefile
patch
|
blob
|
history
diff --git
a/package/libs/toolchain/Makefile
b/package/libs/toolchain/Makefile
index 202e9d095d6c4b9d1f1f348603e0df1fdc30f5a4..a29b3221ecadcdaf373d46a1d721fa6d75aa691d 100644
(file)
--- a/
package/libs/toolchain/Makefile
+++ b/
package/libs/toolchain/Makefile
@@
-428,6
+428,9
@@
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
$(1)/lib/
endef
+ LD_MUSL_NAME = $(notdir $(firstword $(wildcard $(TOOLCHAIN_DIR)/lib/ld-musl-*.so*)))
+ $(warning LD_MUSL_NAME='$(LD_MUSL_NAME)')
+
define Package/musl/install
$(INSTALL_DIR) $(1)/lib
$(CP) \
@@
-436,6
+439,7
@@
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
$(CP) \
$(TOOLCHAIN_DIR)/lib/libc.so* \
$(1)/lib/
+ $(if $(findstring -sf.so,$(LD_MUSL_NAME)),ln -s $(LD_MUSL_NAME) $(1)/lib/$(subst -sf.so,.so,$(LD_MUSL_NAME)))
endef
define Package/libc/install