From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12982 invoked by alias); 2 Jun 2005 22:10:27 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 12808 invoked by uid 22791); 2 Jun 2005 22:10:22 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Thu, 02 Jun 2005 22:10:22 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j52MAL9Y029667; Thu, 2 Jun 2005 18:10:21 -0400 Received: from zenia.home.redhat.com (sebastian-int.corp.redhat.com [172.16.52.221]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j52MAEO06820; Thu, 2 Jun 2005 18:10:15 -0400 To: binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: PATCH: recognize M32C in config.sub From: Jim Blandy Date: Thu, 02 Jun 2005 22:10:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2005-06/txt/msg00021.txt.bz2 I've committed the following change to the binutils/gdb tree; it's been approved and committed by the CONFIG maintainers. 2005-06-02 Jim Blandy * config.sub: Add cases for the Renesas m32c. (This patch has been accepted into the master sources.) Index: config.sub =================================================================== RCS file: /cvs/src/src/config.sub,v retrieving revision 1.51 diff -c -p -r1.51 config.sub *** config.sub 29 Apr 2005 14:00:02 -0000 1.51 --- config.sub 31 May 2005 20:55:03 -0000 *************** case $basic_machine in *** 273,278 **** --- 273,281 ---- | z8k) basic_machine=$basic_machine-unknown ;; + m32c) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown *************** case $basic_machine in *** 351,356 **** --- 354,361 ---- | ymp-* \ | z8k-*) ;; + m32c-*) + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd)