From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26177 invoked by alias); 13 Jun 2011 15:24:04 -0000 Received: (qmail 26166 invoked by uid 22791); 13 Jun 2011 15:24:02 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_EG,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 13 Jun 2011 15:23:38 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5DFNcrB021383 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 13 Jun 2011 11:23:38 -0400 Received: from Gift.redhat.com (vpn2-8-132.ams2.redhat.com [10.36.8.132]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p5DFNYTO022266; Mon, 13 Jun 2011 11:23:36 -0400 From: Nick Clifton To: gcc-patches@gcc.gnu.org, binutils@sourceware.org, gdb-patches@sourceware.org Subject: Commit: Add support for Tile architecutres to configure.ac Date: Mon, 13 Jun 2011 15:32:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-06/txt/msg00975.txt.bz2 Hi Guys, I am checking in the patch below to add recognition of the Tilera TILE architectures to the top level configure script. A patch to support these architectures has just been committed to the binutils sources. Cheers Nick ./ChangeLog 2011-06-10 Walter Lee * configure.ac (tilepro-*-*) New case. (tilegx-*-*): Likewise. * configure: Regenerate. Index: configure.ac =================================================================== RCS file: /cvs/src/src/configure.ac,v retrieving revision 1.154 diff -u -3 -p -r1.154 configure.ac --- configure.ac 9 May 2011 17:56:47 -0000 1.154 +++ configure.ac 13 Jun 2011 15:19:11 -0000 @@ -1054,6 +1054,9 @@ case "${target}" in tic6x-*-*) noconfigdirs="$noconfigdirs gdb sim" ;; + tilepro-*-* | tilegx-*-*) + noconfigdirs="$noconfigdirs sim" + ;; v810-*-*) noconfigdirs="$noconfigdirs bfd binutils gas gdb ld opcodes target-libgloss" ;;