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 53BAA1396DA for ; Fri, 13 Oct 2017 16:31:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EEC3E0BE2; Fri, 13 Oct 2017 16:31:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4FC74E0B4B for ; Fri, 13 Oct 2017 16:31:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 507AA33BF24 for ; Fri, 13 Oct 2017 16:31:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F9D090A7 for ; Fri, 13 Oct 2017 16:31:42 +0000 (UTC) From: "Steve Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steve Arnold" Message-ID: <1507861154.f9e1a26e5f6ed8f0df7fe16f5f3fe4c3aa5d69af.nerdboy@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: nerdboy X-VCS-Committer-Name: Steve Arnold X-VCS-Revision: f9e1a26e5f6ed8f0df7fe16f5f3fe4c3aa5d69af X-VCS-Branch: master Date: Fri, 13 Oct 2017 16:31:42 +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: 9d63bade-f3b8-4099-9f35-5245d042ba4e X-Archives-Hash: 07d8f99662e132b1d8019ae968e1ede2 commit: f9e1a26e5f6ed8f0df7fe16f5f3fe4c3aa5d69af Author: Steve Arnold gentoo org> AuthorDate: Fri Oct 13 02:16:00 2017 +0000 Commit: Steve Arnold gentoo org> CommitDate: Fri Oct 13 02:19:14 2017 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=f9e1a26e sys-devel/crossdev: add fixes for several bugs and patches * pull in EPREFIX/ROOT fixes from heroxbd on github * includes portage patch for functions path * add snippet to force multilib on for avr targets see: https://github.com/heroxbd/crossdev https://bugs.gentoo.org/show_bug.cgi?id=378387 http://forum.arduino.cc/index.php?topic=93672.0 Signed-off-by: Steve Arnold gentoo.org> crossdev | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 5bb4b77..78d63da 100755 --- a/crossdev +++ b/crossdev @@ -1022,9 +1022,17 @@ set_portage() { [[ ${pkg} == "[none]" ]] && return 0 + case ${CTARGET} in + # avr requires multilib, that provides + # libgcc for all sub-architectures #378387 + avr*) set_use_force ${pkg} multilib + ;; + *) set_use_force ${pkg} -multilib + ;; + esac + set_keywords ${pkg} ${ver} set_use ${pkg} ${use} - set_use_force ${pkg} -multilib set_use_mask ${pkg} -multilib set_links ${cat} ${pkg} "${ovl}" set_env ${l} ${pkg} "${env}"