From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 405131381F3 for ; Sat, 30 Dec 2017 17:45:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92287E08A4; Sat, 30 Dec 2017 17:45:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F7EEE08A4 for ; Sat, 30 Dec 2017 17:45:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63B98335C08 for ; Sat, 30 Dec 2017 17:45:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 277C7145 for ; Sat, 30 Dec 2017 17:45:24 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1514655883.32e6558e820f146190dfcbadeafd307826150133.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/emerge-wrapper X-VCS-Directories: wrappers/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 32e6558e820f146190dfcbadeafd307826150133 X-VCS-Branch: master Date: Sat, 30 Dec 2017 17:45:24 +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: 95c41a54-803e-49e0-b46b-7ffc3e18ac3a X-Archives-Hash: 480e2883e36c020a6237aab424eb2009 commit: 32e6558e820f146190dfcbadeafd307826150133 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Dec 30 17:44:43 2017 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Dec 30 17:44:43 2017 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=32e6558e wrappers/emerge-wrapper: add ELIBC=musl autodetection Reported-by: Marty E. Plummer Signed-off-by: Sergei Trofimovich gentoo.org> wrappers/emerge-wrapper | 1 + 1 file changed, 1 insertion(+) diff --git a/wrappers/emerge-wrapper b/wrappers/emerge-wrapper index c123259..3153f8b 100755 --- a/wrappers/emerge-wrapper +++ b/wrappers/emerge-wrapper @@ -52,6 +52,7 @@ cross_wrap_etc() case ${CHOST} in *gnu*) LIBC=glibc ;; *uclibc*) LIBC=uclibc ;; + *musl*) LIBC=musl ;; *mingw*) LIBC=mingw ;; *) emit_setup_warning "No LIBC is known for this target." ;; esac