X-Original-To: alpine-aports@lists.alpinelinux.org Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by lists.alpinelinux.org (Postfix) with ESMTP id B5FF75C4D7B for ; Thu, 21 Dec 2017 20:11:53 +0000 (GMT) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 2EAA820C58; Thu, 21 Dec 2017 15:11:53 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 21 Dec 2017 15:11:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lochnair.net; h= cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=H0tzryLohqNqMVnplhB8Tx/T95dgdxMwD85jQX 3GO+8=; b=NEMpWF5kpDmbBSBQ2A9Tv3jTU/UjUqETGId+jRcocr0lnrRrZtAU/J QIWVnqCUeDjNe9LCIEuQWXsBto65nFBmV1Cbz3KOhjGQnpZ8ebk251KXO3l8lGWN Gj0xa/zAcONBdNrv4rNd8fJtd0BSlC57pDLZUS2iFoBiiwJnEm7+o= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=H0tzryLohqNqMVnpl hB8Tx/T95dgdxMwD85jQX3GO+8=; b=RQ+yJMNvrA7eJTwSqN6hJSAmuB+/4yqcm KfQJJO4TZ5o6BctwGiAgA+MffIwnuWFfyYXYqL0FkGNas6edL952nWfqg+X8dKSe 5Q7A5gCcy80Pw8zZPNYNla+FVQr51f8ZuOoTfMVCNOlUGOyJvmiK/fPeIamHtvm/ qK/oJ8SkH9LfgQ/VBc4x1BgfokGS0xbNbKPVVpz1zG/MaNAxM4ThuqeNwcxBnaNY yI1xQzpPH9CPWvX4r8pELH8Ar7vLzeO6rzcuWj7sQ7J/4Gdmoxdk66xv8SXC9cv/ YLfPDq1ed0c2ddFHPxMprz4HOenXeUBK0cuMtRuk7e5MuhJBaEtmQ== X-ME-Sender: Received: from halyard.svee.in (77.18.132.45.tmi.telenormobil.no [77.18.132.45]) by mail.messagingengine.com (Postfix) with ESMTPA id 34EB02442C; Thu, 21 Dec 2017 15:11:52 -0500 (EST) From: Nils Andreas Svee To: alpine-aports@lists.alpinelinux.org Cc: Nils Andreas Svee Subject: [alpine-aports] [PATCH 1/3] main/gcc: add arch specific configure options for MIPS Date: Thu, 21 Dec 2017 21:11:39 +0100 Message-Id: <20171221201141.22387-1-me@lochnair.net> X-Mailer: git-send-email 2.15.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/gcc/APKBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index 83243c2c28..1bb77b6eed 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -235,7 +235,10 @@ build() { armv5-*-*-*eabi) _arch_configure="--with-arch=armv5te --with-tune=arm926ej-s --with-float=soft --with-abi=aapcs-linux";; armv6-*-*-*eabihf) _arch_configure="--with-arch=armv6zk --with-tune=arm1176jzf-s --with-fpu=vfp --with-float=hard --with-abi=aapcs-linux";; armv7-*-*-*eabihf) _arch_configure="--with-arch=armv7-a --with-tune=generic-armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-abi=aapcs-linux --with-mode=thumb";; - mipsel-*-*-*) _arch_configure="--with-arch-32=mips2 --with-tune-32=mips32 --with-fp-32=32 --with-mips-plt --with-float=hard --with-abi=32";; + mips-*-*-*) _arch_configure="--with-arch=mips32 --with-mips-plt --with-float=soft --with-abi=32";; + mips64-*-*-*) _arch_configure="--with-arch=mips3 --with-tune=mips64 --with-mips-plt --with-float=soft --with-abi=64";; + mips64el-*-*-*) _arch_configure="--with-arch=mips3 --with-tune=mips64 --with-mips-plt --with-float=soft --with-abi=64";; + mipsel-*-*-*) _arch_configure="--with-arch=mips32 --with-mips-plt --with-float=soft --with-abi=32";; powerpc-*-*-*) _arch_configure="--enable-secureplt --enable-decimal-float=no";; powerpc64*-*-*-*) _arch_configure="--with-abi=elfv2 --enable-secureplt --enable-decimal-float=no --enable-targets=powerpcle-linux";; i486-*-*-*) _arch_configure="--with-arch=i486 --with-tune=generic --enable-cld";; -- 2.15.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---