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 CBB1F139083 for ; Tue, 12 Dec 2017 21:35:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0004DE0EA4; Tue, 12 Dec 2017 21:35:07 +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 CEFBAE0EA4 for ; Tue, 12 Dec 2017 21:35:07 +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 63CE134165A for ; Tue, 12 Dec 2017 21:35:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB6E8AE66 for ; Tue, 12 Dec 2017 21:35:04 +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: <1513113975.bde092588bad63b3532084d6a04cf41609151ac9.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: bde092588bad63b3532084d6a04cf41609151ac9 X-VCS-Branch: master Date: Tue, 12 Dec 2017 21:35:04 +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: 61ae17fb-ea2c-475b-8092-a898e03c2305 X-Archives-Hash: c98b9b8d18b0bc9b0eda19859cf48023 commit: bde092588bad63b3532084d6a04cf41609151ac9 Author: Steve Arnold gentoo org> AuthorDate: Tue Dec 12 21:26:15 2017 +0000 Commit: Steve Arnold gentoo org> CommitDate: Tue Dec 12 21:26:15 2017 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=bde09258 crossdev: turn on multilib for bare metal arm cortex-M * note this is required for a toolchain that supports more than one cpu/fpu * also note this needs some toolchain patches for proper multilib and armv8-M support (currently applied in ada overlay) * grab from dev.g.o/~nerdboy/files/gcc-6.4.0-arm-patches-1.0.tar.gz and apply after other patches (or the ned of src_prepare) Signed-off-by: Steve Arnold gentoo.org> crossdev | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crossdev b/crossdev index 3df7f27..9d614a2 100755 --- a/crossdev +++ b/crossdev @@ -1045,6 +1045,9 @@ set_portage() { # libgcc for all sub-architectures #378387 avr*) set_use_force ${pkg} multilib -pie; set_use_mask ${pkg} -multilib pie;; + *-newlib|*-elf|*-eabi) + set_use_force ${pkg} multilib; + set_use_mask ${pkg} -multilib;; *) set_use_force ${pkg} -multilib;; esac