diff options
author | 2012-12-25 21:28:17 +0100 | |
---|---|---|
committer | 2012-12-25 16:44:09 -0500 | |
commit | de838ec6f92d5fd00c6b806009a213112c416b15 (patch) | |
tree | 928bfbfb62fd2e562a97c1adf8489d64cc0960a5 | |
parent | crossdev: clean out a few more gcc wrappers (diff) | |
download | crossdev-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-x | crossdev | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |