From patchwork Thu Feb 11 12:23:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Campbell X-Patchwork-Id: 8278791 Return-Path: X-Original-To: patchwork-xen-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id BB10FBEEE5 for ; Thu, 11 Feb 2016 12:26:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id EA47920397 for ; Thu, 11 Feb 2016 12:26:21 +0000 (UTC) Received: from lists.xen.org (lists.xenproject.org [50.57.142.19]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 17630201FA for ; Thu, 11 Feb 2016 12:26:21 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xen.org) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aTqHm-0008F0-2e; Thu, 11 Feb 2016 12:23:50 +0000 Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aTqHj-0008Ep-QP for xen-devel@lists.xen.org; Thu, 11 Feb 2016 12:23:47 +0000 Received: from [85.158.139.211] by server-6.bemta-5.messagelabs.com id A9/9A-06685-25D7CB65; Thu, 11 Feb 2016 12:23:46 +0000 X-Env-Sender: prvs=842d64d66=Ian.Campbell@citrix.com X-Msg-Ref: server-7.tower-206.messagelabs.com!1455193424!21479352!1 X-Originating-IP: [66.165.176.63] X-SpamReason: No, hits=0.0 required=7.0 tests=sa_preprocessor: VHJ1c3RlZCBJUDogNjYuMTY1LjE3Ni42MyA9PiAzMDYwNDg=\n, received_headers: No Received headers X-StarScan-Received: X-StarScan-Version: 7.35.1; banners=-,-,- X-VirusChecked: Checked Received: (qmail 57353 invoked from network); 11 Feb 2016 12:23:46 -0000 Received: from smtp02.citrix.com (HELO SMTP02.CITRIX.COM) (66.165.176.63) by server-7.tower-206.messagelabs.com with RC4-SHA encrypted SMTP; 11 Feb 2016 12:23:46 -0000 X-IronPort-AV: E=Sophos;i="5.22,430,1449532800"; d="scan'208";a="337532193" From: Ian Campbell To: , , , Date: Thu, 11 Feb 2016 12:23:41 +0000 Message-ID: <1455193422-14558-1-git-send-email-ian.campbell@citrix.com> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 X-DLP: MIA1 Cc: Doug Goldstein , Ian Campbell Subject: [Xen-devel] [PATCH v3 1/2] build: specify minimum versions of gcc and binutils X-BeenThere: xen-devel@lists.xen.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Doug Goldstein To help people avoid having to figure out what versions of gcc and binutils need to be supported document them explicitly. Signed-off-by: Doug Goldstein Signed-off-by: Ian Campbell Acked-by: Jan Beulich --- v3: [ijc] Updated version for binutils and include gcc (separately for x86 and ARM in both cases), deferred make to second patch --- README | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README b/README index 1324c7c..356a350 100644 --- a/README +++ b/README @@ -35,9 +35,13 @@ Second, there are a number of prerequisites for building a Xen source release. Make sure you have all the following installed, either by visiting the project webpage or installing a pre-built package provided by your OS distributor: - * GCC v4.1 or later + * GCC + - For x86 4.1.2_20070115 or later + - For ARM 4.8 or later * GNU Make - * GNU Binutils + * GNU Binutils: + - For x86 2.16.91.0.5 or later + - For ARM 2.24 or later * Development install of zlib (e.g., zlib-dev) * Development install of Python v2.3 or later (e.g., python-dev) * Development install of curses (e.g., libncurses-dev)