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 D90E65C4D5B for ; Sun, 10 Dec 2017 00:18:37 +0000 (GMT) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 7486420A08; Sat, 9 Dec 2017 19:18:36 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Sat, 09 Dec 2017 19:18:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lochnair.net; h= cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=mesmtp; bh=gLFJ+FhqNIyZk7 ehERp4QDB/l/Zq7Rk/L8e3nhVwJXk=; b=XH/6z0Ya7+xBtONiTDZ5Yq5cYllu2M 1DUfg0WaZzMuvOQ972wc3veaco/n5lCe9B4pg6oIg4xKoZOHma2uUAbmV5cNXf5T A5BlRE1iH7BkYAqfgLqPZPfOL2T4RdCsyD15fysf5NO6dxlTgc81FgnGj0iYJwDU A0JZoxt2QBRRI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=gLFJ+FhqNIyZk7ehERp4QDB/l/Zq7Rk/L8e3nhVwJXk=; b=gXuSCfzW ZB2O+ig2p+LBT/B57QAmmrc0D57VpAEJ6TISoFtDfjE0jlfnASr5K2a/dPWCkyYc 6QpuaDyfb9NPK70bZpQ7t6fxUbGWmqaR3w+o8logDKABSdpD/NdXDBXqFc2N+jlp A6H6b+J+NndvdlHKx/R2stuSxUhvxjLrn5FaMjqiSz/wHJfe4pvjPoEY3OQ/QzlA icbUylLY6PW3mzvm78t0+/6d7oY+jRUiqFHH5fEEHlZrNe6NzprVrXUW5lIxAD5x oV26zd2p8QisrsMCo7K2+WAgGmdMqe2kIq8mKEi6k0OV6+zGW5M1Bj+hzwsA6Dzz kS/edkC4dyTqMQ== X-ME-Sender: Received: from halyard.svee.in (77.18.134.11.tmi.telenormobil.no [77.18.134.11]) by mail.messagingengine.com (Postfix) with ESMTPA id 8AD4924495; Sat, 9 Dec 2017 19:18:35 -0500 (EST) From: Nils Andreas Svee To: alpine-aports@lists.alpinelinux.org Cc: Nils Andreas Svee Subject: [alpine-aports] [PATCH 2/7] main/gcc: disable libitm on mips archs, as it causes compilation to fail Date: Sun, 10 Dec 2017 01:18:09 +0100 Message-Id: <20171210001814.28762-2-me@lochnair.net> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20171210001814.28762-1-me@lochnair.net> References: <20171210001814.28762-1-me@lochnair.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/gcc/APKBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index ea3b5b6a7d..f452f7c35c 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -95,6 +95,7 @@ fi # libitm has TEXTRELs in ARM build, so disable for now case "$CTARGET_ARCH" in arm*) LIBITM=false ;; +mips*) LIBITM=false ;; esac # Fortran uses libquadmath if toolchain has __float128 -- 2.15.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---