diff mbox

[LEDE-DEV,V2] toolchain: add musl libc.so to external toolchain

Message ID 20170314181857.18978-1-hauke.mehrtens@intel.com
State Accepted
Delegated to: Hauke Mehrtens
Headers show

Commit Message

Hauke Mehrtens March 14, 2017, 6:18 p.m. UTC
From: Hauke Mehrtens <hauke.mehrtens@intel.com>

musl provides a /lib/libc.so file which should be integrated into the libc
package when the external toolchain with musl is used.

Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>
---
 package/libs/toolchain/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Florian Fainelli March 14, 2017, 6:22 p.m. UTC | #1
On 03/14/2017 11:18 AM, hauke.mehrtens@intel.com wrote:
> From: Hauke Mehrtens <hauke.mehrtens@intel.com>
> 
> musl provides a /lib/libc.so file which should be integrated into the libc
> package when the external toolchain with musl is used.
> 
> Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Jo-Philipp Wich March 14, 2017, 7:28 p.m. UTC | #2
Hi,


> musl provides a /lib/libc.so file which should be integrated into the libc
> package when the external toolchain with musl is used.
> 
> Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>

Acked-by: Jo-Philipp Wich <jo@mein.io>
diff mbox

Patch

diff --git a/package/libs/toolchain/Makefile b/package/libs/toolchain/Makefile
index 8a90b5e..0bf4824 100644
--- a/package/libs/toolchain/Makefile
+++ b/package/libs/toolchain/Makefile
@@ -164,7 +164,7 @@  define Package/libc/config
 		string
 		prompt "libc shared library files (use wildcards)"
 		depends on EXTERNAL_TOOLCHAIN && PACKAGE_libc
-		default "./lib/ld{*.so*,-linux*.so.*} ./lib/lib{anl,c,cidn,crypt,dl,m,nsl,nss_dns,nss_files,resolv,util}{-*.so,.so.*}"
+		default "./lib/ld{*.so*,-linux*.so.*} ./lib/lib{anl,c,cidn,crypt,dl,m,nsl,nss_dns,nss_files,resolv,util}{-*.so,.so.*,.so}"
 
 	endmenu
 endef