From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 31E611381FB for ; Tue, 25 Dec 2012 21:44:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA62E21C0B7; Tue, 25 Dec 2012 21:44:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 369C321C0B7 for ; Tue, 25 Dec 2012 21:44:04 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C61A33D904 for ; Tue, 25 Dec 2012 21:44:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D622DE543D for ; Tue, 25 Dec 2012 21:44:01 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1356471849.de838ec6f92d5fd00c6b806009a213112c416b15.vapier@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: de838ec6f92d5fd00c6b806009a213112c416b15 X-VCS-Branch: master Date: Tue, 25 Dec 2012 21:44:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0b874691-fbcf-4903-9664-defa5f46e74c X-Archives-Hash: bf8812c3449bd67e2e8e51660017d349 commit: de838ec6f92d5fd00c6b806009a213112c416b15 Author: Luca Barbato gentoo org> AuthorDate: Tue Dec 25 20:28:17 2012 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Dec 25 21:44:09 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=de838ec6 crossdev: add support for musl targets/libc URL: https://bugs.gentoo.org/448592 Signed-off-by: Luca Barbato gentoo.org> Signed-off-by: Mike Frysinger gentoo.org> --- crossdev | 2 ++ 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)