aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2012-12-25 21:28:17 +0100
committerMike Frysinger <vapier@gentoo.org>2012-12-25 16:44:09 -0500
commitde838ec6f92d5fd00c6b806009a213112c416b15 (patch)
tree928bfbfb62fd2e562a97c1adf8489d64cc0960a5
parentcrossdev: clean out a few more gcc wrappers (diff)
downloadcrossdev-de838ec6f92d5fd00c6b806009a213112c416b15.tar.gz
crossdev-de838ec6f92d5fd00c6b806009a213112c416b15.tar.bz2
crossdev-de838ec6f92d5fd00c6b806009a213112c416b15.zip
crossdev: add support for musl targets/libc
URL: https://bugs.gentoo.org/448592 Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rwxr-xr-xcrossdev2
1 files changed, 2 insertions, 0 deletions
diff --git a/crossdev b/crossdev
index 3045e0a..d13a7bf 100755
--- a/crossdev
+++ b/crossdev
@@ -118,6 +118,7 @@ parse_target() {
Supported C Libraries:
- glibc (gnu)
- klibc [prob wont work]
+ - musl
- newlib [bare metal/no operating system]
- uclibc [not all arches are ported]
Special Targets:
@@ -258,6 +259,7 @@ parse_target() {
*-klibc) LPKG="klibc";;
*-uclibc*) LPKG="uclibc";;
*-uclinux) LPKG="uclibc";;
+ *-musl*) LPKG="musl";;
# Windows targets
*-cygwin)