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 37F005C4D5B for ; Sun, 10 Dec 2017 00:20:22 +0000 (GMT) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 07C0420961; Sat, 9 Dec 2017 19:20:22 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Sat, 09 Dec 2017 19:20:22 -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=uXoiOuu1E1vBSHo4zkCSVZFPSmbQaqI0hHL2au mdMys=; b=ANx/OY4gtT9ZJM5wuJYBZrwtxlrjF+wzs7N81/OhVCIye9VaxIjfdy jFY/SsLujE1CTGp/d875Cud/GgRApLB4+Y7HjT2p2xo3zQ0b3hoeQTV0VtS88EQm D8AqllJsRbM/b3DJ9wjGGYljOomsUByq+5VuyAw/fSIbnHFhJXfTc= 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=uXoiOuu1E1vBSHo4z kCSVZFPSmbQaqI0hHL2aumdMys=; b=SYq5pezONwJnP17ZHlEi/JS5ryWzJOqry gUqTMbEp0yC7YZJdqvrv9+jjUJJCQXpwlH6im2dIHPUJloJKB3tZ88RqVz9BJ+b9 B3v9qJySgBy8dnpKrcViR4pf2W1DqC6wk4/JwOJtSMsbtHCCTLdgVqa4zkgfdcrW UE7T41Oh13RhQgkMnE56DD+6RCCE89dLyd/CH3S4CuyJzU/uC5cJC24gJ5Eh15cz Lt/++64IXczJAZTxJdoe6n9VMvHKEvA5ifHfFAj6uvLvqhvaCATbnYKKYNgQcXgB KCep+YJDIQW0u2i5SygOEIgnX/rZCdw/OquFTrTExlIKDPyHVW7uQ== 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 1C7AA248D1; Sat, 9 Dec 2017 19:20:20 -0500 (EST) From: Nils Andreas Svee To: alpine-aports@lists.alpinelinux.org Cc: Nils Andreas Svee Subject: [alpine-aports] [abuild] [PATCH] abuild: add triplet definitions for mips architectures Date: Sun, 10 Dec 2017 01:20:12 +0100 Message-Id: <20171210002012.29679-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: --- functions.sh.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/functions.sh.in b/functions.sh.in index b886e72..5b25534 100644 --- a/functions.sh.in +++ b/functions.sh.in @@ -9,6 +9,10 @@ arch_to_hostspec() { armel) echo "armv5-alpine-linux-musleabi" ;; armhf) echo "armv6-alpine-linux-muslgnueabihf" ;; armv7) echo "armv7-alpine-linux-musleabihf" ;; + mips) echo "mips-alpine-linux-musl" ;; + mips64) echo "mips64-alpine-linux-musl" ;; + mipsel) echo "mipsel-alpine-linux-musl" ;; + mips64el) echo "mips64el-alpine-linux-musl" ;; ppc) echo "powerpc-alpine-linux-musl" ;; ppc64) echo "powerpc64-alpine-linux-musl" ;; ppc64le) echo "powerpc64le-alpine-linux-musl" ;; @@ -26,6 +30,10 @@ hostspec_to_arch() { armv6*-*-*-*eabihf) echo "armhf" ;; armv7*-*-*-*eabihf) echo "armv7" ;; i[0-9]86-*-*-*) echo "x86" ;; + mips-*-*-*) echo "mips" ;; + mips64-*-*-*) echo "mips64" ;; + mipsel-*-*-*) echo "mipsel" ;; + mips64el-*-*-*) echo "mips64el" ;; powerpc-*-*-*) echo "ppc" ;; powerpc64-*-*-*) echo "ppc64" ;; powerpc64le-*-*-*) echo "ppc64le" ;; -- 2.15.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---