From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24314 invoked by alias); 26 Apr 2005 14:45:52 -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 24251 invoked from network); 26 Apr 2005 14:45:36 -0000 Received: from unknown (HELO mout0.freenet.de) (194.97.50.131) by sourceware.org with SMTP; 26 Apr 2005 14:45:36 -0000 Received: from [194.97.50.135] (helo=mx2.freenet.de) by mout0.freenet.de with esmtpa (Exim 4.51) id 1DQRJc-0001l7-DI; Tue, 26 Apr 2005 16:45:32 +0200 Received: from j2f12.j.pppool.de ([85.74.47.18] helo=[192.168.0.172]) by mx2.freenet.de with esmtpsa (ID rcrtems@freenet.de) (SSLv3:RC4-MD5:128) (Exim 4.51 #8) id 1DQRJb-0003ES-W6; Tue, 26 Apr 2005 16:45:32 +0200 Subject: [Patch,sim] Build psim for powerpc*-*-rtems* From: Ralf Corsepius To: GDB Patches Cc: Joel Sherrill Content-Type: multipart/mixed; boundary="=-KwLTx1YUgZxYLLl0ubGY" Date: Tue, 26 Apr 2005 14:45:00 -0000 Message-Id: <1114526730.7227.219.camel@mccallum.corsepiu.local> Mime-Version: 1.0 X-SW-Source: 2005-04/txt/msg00344.txt.bz2 --=-KwLTx1YUgZxYLLl0ubGY Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 164 Hi, Could somebody please apply the patch below. This patch is floating around for gdb-rtems for years, but never seems to have made it into gdb ;-) TIA, Ralf --=-KwLTx1YUgZxYLLl0ubGY Content-Disposition: attachment; filename=gdb-rtems-psim.diff Content-Type: text/x-patch; name=gdb-rtems-psim.diff; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 1552 2005-04-25 Ralf Corsepius * configure.ac: build psim for powerpc*-*-rtems*. * configure: Regenerate. Index: configure =================================================================== RCS file: /cvs/src/src/sim/configure,v retrieving revision 1.13 diff -u -r1.13 configure --- configure 26 Jan 2004 08:12:43 -0000 1.13 +++ configure 26 Apr 2005 14:38:26 -0000 @@ -1458,7 +1458,7 @@ extra_subdirs="${extra_subdirs} testsuite" ;; powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | \ - powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* ) + powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* | powerpc*-*-rtems* ) # The PowerPC simulator uses the GCC extension long long as well as # ANSI prototypes, so don't enable it for random host compilers # unless asked to. Index: configure.in =================================================================== RCS file: /cvs/src/src/sim/Attic/configure.in,v retrieving revision 1.15 diff -u -r1.15 configure.in --- configure.in 26 Jan 2004 08:12:43 -0000 1.15 +++ configure.in 26 Apr 2005 14:38:26 -0000 @@ -97,7 +97,7 @@ extra_subdirs="${extra_subdirs} testsuite" ;; powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | \ - powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* ) + powerpc*-*-elf* | powerpc*-*-linux* | powerpc*-*-netbsd* | powerpc*-*-rtems* ) # The PowerPC simulator uses the GCC extension long long as well as # ANSI prototypes, so don't enable it for random host compilers # unless asked to. --=-KwLTx1YUgZxYLLl0ubGY--