From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15865 invoked by alias); 29 Jan 2007 03:19:47 -0000 Received: (qmail 15857 invoked by uid 22791); 29 Jan 2007 03:19:47 -0000 X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 29 Jan 2007 03:19:42 +0000 Received: from home.wh0rd.org (pool-151-203-5-76.bos.east.verizon.net [151.203.5.76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 287AE651A0 for ; Mon, 29 Jan 2007 03:19:40 +0000 (UTC) Received: (qmail 30236 invoked from network); 28 Jan 2007 22:18:04 -0500 Received: from unknown (HELO vapier) (192.168.0.2) by 192.168.0.1 with SMTP; 28 Jan 2007 22:18:04 -0500 From: Mike Frysinger Subject: [patch] fix superh detection in sim/configure Date: Mon, 29 Jan 2007 03:19:00 -0000 User-Agent: KMail/1.9.5 Cc: gdb-patches@sourceware.org, slauss@resi.at, Kaz Kojima MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_ifWvFqgVQVtQm2K" To: Undisclosed.Recipients: ; Message-Id: <200701282220.02884.vapier@gentoo.org> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-01/txt/msg00574.txt.bz2 --Boundary-00=_ifWvFqgVQVtQm2K Content-Type: multipart/signed; boundary="nextPart1273782.5NfAOCj8ZZ"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit --nextPart1273782.5NfAOCj8ZZ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Content-length: 153 the superh detection in sim/configure ignores pretty much all useful superh= =20 targets and that's no fun ... attached patch should fix things up -mike --nextPart1273782.5NfAOCj8ZZ Content-Type: application/pgp-signature Content-length: 827 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.1 (GNU/Linux) iQIVAwUARb1n4kFjO5/oN/WBAQILXRAAjxcUmHvYeaN4pFo1KdQb5lFvfl8tr1x0 IQ2HFlO+UxtYCzJVZl4kZgwcj+JJn05AuH8izuNl5HL7OeRVGk6vK+YzKRKwdDws CM+Wq/l3TatFdbLMXy9JqoIN+Kt3J3vIq6lcCejMLzwrzKsL5v6TSF7130V9ICSz w8eynlsY/UR6Q2Y78eF85Ofws+faVY1xeI16/6mj5bkuk3HNsE2wJad+g9e0aNKi qzyR3zklNv4PpLriN7G5hDt77MiJnxpjMCut3zFLZ/vk7FDI0L7gxLKxWP0bIAZR yv6s3M0lUgo9RBvsZvvEQFxTKt7Dc2fzzaN3ts0uKfHO9CZskbn5TUpYdgUOjA1t yi8zh+g+ibveEDm3dsbPFwDLehbtQ4Gw9/dGwh6H6er5DSLz03pFzQShIYTT6Upz CLCxQLO5vsYz5R9wbBlQUOsPttPmSLR20TMNU7LbTzxu+rIj+8myAz/or5CgiY7D RdKrSGDVGxM9j7ly99/g5ekPCTiqCChchXMBg/kFK/YU70QWZKK7botC9WX8iXGW EPeIdrg1OL8LDVjUAWYcNwRkLfeyn5SMUH4MMnaxdp2Ox5hnEi9FbQBNFfkg2iXn QcRCYXRSWY2T36gv/0fmFx/KoM0FWDaaVfPXAstqZ8AQexmugFZhaUofscLA7UnM vpuf3IeSwSA= =PHK5 -----END PGP SIGNATURE----- --nextPart1273782.5NfAOCj8ZZ-- --Boundary-00=_ifWvFqgVQVtQm2K Content-Type: text/x-diff; charset="us-ascii"; name="gdb-sim-superh-targets.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb-sim-superh-targets.patch" Content-length: 503 2007-01-28 Manuel Lauss * configure.ac (sh64-*-*): Change to sh64*-*-*. (sh-*-*): Change to sh*-*-*. * configure: Regenerated. --- sim/configure.ac +++ sim/configure.ac @@ -94,11 +94,11 @@ if test "${enable_sim}" != no; then AC_CONFIG_SUBDIRS(mn10300) igen=yes ;; - sh64-*-*) + sh64*-*-*) AC_CONFIG_SUBDIRS(sh64) testsuite=yes ;; - sh-*-*) + sh*-*-*) AC_CONFIG_SUBDIRS(sh) testsuite=yes ;; --Boundary-00=_ifWvFqgVQVtQm2K--