From patchwork Mon Jun 30 06:57:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Leontiev X-Patchwork-Id: 365491 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 2E6821400EE for ; Mon, 30 Jun 2014 16:57:32 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=VhrcHLY1yq6VyrKN53AVonC9iUjKCQ+3KycTS63LMa8bqMHdbBmXM oCszpAqjzhQKIbHP+q6cvQXAN3EvT4nfZ2NNxvKULfBvjbL05yuVTeB7KyLSCSs2 7ubqv85VueVqtwOURnMd2lU/ikeJe1emQ/AvNAln+ZknIbg8LPSbIM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=mdoEThN2D6XeSPWij1WMz7ZKVLI=; b=ksZKR2eNbFGbl6WiYq9+lrjnzUrI Jl3SVm0sdatX8Y2OYqThLsnLUqyr9JYhLDWw37Q5akK4YXIhEWQcmnYFP+ezTVEa ojMSnKGNp+2KO6IFYIQLqVZArZ2yDsejV9skedHU05UOZG9FBAeqf7ZVIEu8F3K4 aVoC8BOzNhN1PUw= Received: (qmail 8470 invoked by alias); 30 Jun 2014 06:57:25 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Received: (qmail 8459 invoked by uid 89); 30 Jun 2014 06:57:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail.elvees.com Received: from mail.elvees.com (HELO mail.elvees.com) (80.90.126.250) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Mon, 30 Jun 2014 06:57:22 +0000 Received: from cetus-pc.elvees.com (horse.elvees.com [80.90.126.253]) (authenticated bits=0) by mail.elvees.com (8.14.3/8.14.2) with ESMTP id s5U6v6R7015777 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 author= verify=NOT); Mon, 30 Jun 2014 10:57:16 +0400 (MSK) (envelope-from aleontiev@elvees.com) From: Anton Leontiev To: "Yann E. MORIN" Cc: crossgcc@sourceware.org Subject: [PATCH] cc/gcc: Add 4.7.4 and 4.8.3 Date: Mon, 30 Jun 2014 10:57:01 +0400 Message-Id: <1404111421-8523-1-git-send-email-aleontiev@elvees.com> Signed-off-by: Anton Leontiev --- config/cc/gcc.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 9c16df6..33d5675 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -47,6 +47,11 @@ config CC_V_linaro_4_8 depends on CC_GCC_SHOW_LINARO select CC_GCC_4_8 +config CC_V_4_8_3 + bool + prompt "4.8.3" + select CC_GCC_4_8 + config CC_V_4_8_2 bool prompt "4.8.2" @@ -68,6 +73,11 @@ config CC_V_linaro_4_7 depends on CC_GCC_SHOW_LINARO select CC_GCC_4_7 +config CC_V_4_7_4 + bool + prompt "4.7.4" + select CC_GCC_4_7 + config CC_V_4_7_3 bool prompt "4.7.3" @@ -473,10 +483,12 @@ config CC_VERSION # CT_INSERT_VERSION_STRING_BELOW default "4.9.0" if CC_V_4_9_0 default "linaro-4.8-2014.01" if CC_V_linaro_4_8 + default "4.8.3" if CC_V_4_8_3 default "4.8.2" if CC_V_4_8_2 default "4.8.1" if CC_V_4_8_1 default "4.8.0" if CC_V_4_8_0 default "linaro-4.7-2014.01" if CC_V_linaro_4_7 + default "4.7.4" if CC_V_4_7_4 default "4.7.3" if CC_V_4_7_3 default "4.7.2" if CC_V_4_7_2 default "4.7.1" if CC_V_4_7_1