Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/crossdev:master commit in: /
Date: Tue, 25 Dec 2012 21:44:22
Message-Id: 1356471849.de838ec6f92d5fd00c6b806009a213112c416b15.vapier@gentoo
1 commit: de838ec6f92d5fd00c6b806009a213112c416b15
2 Author: Luca Barbato <lu_zero <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 25 20:28:17 2012 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 25 21:44:09 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=de838ec6
7
8 crossdev: add support for musl targets/libc
9
10 URL: https://bugs.gentoo.org/448592
11 Signed-off-by: Luca Barbato <lu_zero <AT> gentoo.org>
12 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
13
14 ---
15 crossdev | 2 ++
16 1 files changed, 2 insertions(+), 0 deletions(-)
17
18 diff --git a/crossdev b/crossdev
19 index 3045e0a..d13a7bf 100755
20 --- a/crossdev
21 +++ b/crossdev
22 @@ -118,6 +118,7 @@ parse_target() {
23 Supported C Libraries:
24 - glibc (gnu)
25 - klibc [prob wont work]
26 + - musl
27 - newlib [bare metal/no operating system]
28 - uclibc [not all arches are ported]
29 Special Targets:
30 @@ -258,6 +259,7 @@ parse_target() {
31 *-klibc) LPKG="klibc";;
32 *-uclibc*) LPKG="uclibc";;
33 *-uclinux) LPKG="uclibc";;
34 + *-musl*) LPKG="musl";;
35
36 # Windows targets
37 *-cygwin)