From patchwork Mon Dec 5 17:47:40 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 5481 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 6299A23E03 for ; Mon, 5 Dec 2011 17:47:50 +0000 (UTC) Received: from mail-lpp01m010-f52.google.com (mail-lpp01m010-f52.google.com [209.85.215.52]) by fiordland.canonical.com (Postfix) with ESMTP id 472C2A18155 for ; Mon, 5 Dec 2011 17:47:50 +0000 (UTC) Received: by mail-lpp01m010-f52.google.com with SMTP id m6so427621lag.11 for ; Mon, 05 Dec 2011 09:47:50 -0800 (PST) Received: by 10.152.122.34 with SMTP id lp2mr6756190lab.20.1323107270187; Mon, 05 Dec 2011 09:47:50 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.41.198 with SMTP id h6cs271308lal; Mon, 5 Dec 2011 09:47:47 -0800 (PST) Received: by 10.152.134.10 with SMTP id pg10mr1863295lab.3.1323107266330; Mon, 05 Dec 2011 09:47:46 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id nj9si11822651lab.28.2011.12.05.09.47.45 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 05 Dec 2011 09:47:46 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1RXcdj-0000Ul-7u; Mon, 05 Dec 2011 17:47:43 +0000 From: Peter Maydell To: android-virt@lists.cs.columbia.edu Cc: Marc Zyngier , Christoffer Dall , patches@linaro.org Subject: [PATCH 3/6] Makefile: default ARCH to 'arm' Date: Mon, 5 Dec 2011 17:47:40 +0000 Message-Id: <1323107263-1870-4-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1323107263-1870-1-git-send-email-peter.maydell@linaro.org> References: <1323107263-1870-1-git-send-email-peter.maydell@linaro.org> ARCH is pretty much always going to be 'arm' so it makes more sense to default it in the makefile. Signed-off-by: Peter Maydell --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 67d840b..38f1df6 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ IMAGE = linux-system.axf LD_SCRIPT = model.lds.S CROSS_COMPILE ?= arm-unknown-eabi- +ARCH ?= arm CC = $(CROSS_COMPILE)gcc LD = $(CROSS_COMPILE)ld