From 52260ccebb73465eacbc292bdc343bdd75e14801 Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Thu, 31 Jul 2014 19:01:46 -0700 Subject: libc/musl: add musl-libc support This patch adds initial support for musl-libc. Musl-libc versions currently supported: * 1.0.3 (Stable) * 1.1.3 (Previous Mainline) * 1.1.4 (Mainline) Futher improvements are needed. * gcc-4.9.x has issues (Might be fixed in musl-1.1.4). * Multilib support is needed. * Checks to make sure paths are correct. * Move to 2-step gcc build. 3-step build is not necessary. Signed-off-by: Bryan Hundven [yann.morin.1998@free.fr: removed the gcc musl patch, to be added later; removed dead code do_get_arch()] Signed-off-by: "Yann E. MORIN" --- scripts/functions | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/functions') diff --git a/scripts/functions b/scripts/functions index 2e4d4fa6..eae3b956 100644 --- a/scripts/functions +++ b/scripts/functions @@ -1182,6 +1182,7 @@ CT_DoBuildTargetTuple() { case "${CT_LIBC}" in *glibc) CT_TARGET_SYS=gnu;; uClibc) CT_TARGET_SYS=uclibc;; + musl) CT_TARGET_SYS=musl;; *) CT_TARGET_SYS=elf;; esac -- cgit v1.2.3