From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9601 invoked by alias); 13 Mar 2013 14:42:35 -0000 Received: (qmail 9459 invoked by uid 22791); 13 Mar 2013 14:42:33 -0000 X-SWARE-Spam-Status: No, hits=-3.9 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from oarmail.oarcorp.com (HELO OARmail.OARCORP.com) (67.63.146.244) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 13 Mar 2013 14:42:22 +0000 Received: from [192.168.1.157] (192.168.1.157) by OARmail.OARCORP.com (192.168.2.2) with Microsoft SMTP Server (TLS) id 8.2.255.0; Wed, 13 Mar 2013 09:42:18 -0500 Message-ID: <5140904A.2040206@oarcorp.com> Date: Wed, 13 Mar 2013 14:42:00 -0000 From: Joel Sherrill User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: Joel Brobecker CC: "gdb@sourceware.org" , Chris Johns Subject: sim/erc32/Makefile.in patch - was Re: GDB 7.5.91 available for testing References: <20130312231727.GF31629@adacore.com> In-Reply-To: <20130312231727.GF31629@adacore.com> Content-Type: multipart/mixed; boundary="------------090400010609070300010900" X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2013-03/txt/msg00010.txt.bz2 --------------090400010609070300010900 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 1310 Hi The sim/erc32 will not build outside the source tree. It is missing a -I. to find config.h in the build tree. mkdir b--gdb cd b-gdb ../gdb-7.5.91/configure --target=sparc-rtems4.11 \ --prefix=/home/joel/test-gdb/install/ \ --enable-sim --enable-sim-hardware \ --enable-timebase --enable-sim-trace >c.log 2>&1 && \ make >b.log 2>&1 && \ make install >i.log 2>&1 Should be enough to reproduce it. Can you commit this to the branch and head please? 2013-03-13 Joel Sherrill * Makefile.in: Include build directory in search path to find config.h Thanks. On 3/12/2013 6:17 PM, Joel Brobecker wrote: > Hello, > > I have just finished creating the gdb-7.5.91 pre-release. > It is available for download at the following location: > > ftp://sourceware.org/pub/gdb/snapshots/branch/gdb-7.5.91.tar.bz2 > > A gzip'ed version is also available: gdb-7.5.91.tar.gz. > > Please give it a test if you can and report any problems you might find. > > On behalf of all the GDB contributors, thank you! > -- Joel Sherrill, Ph.D. Director of Research & Development joel.sherrill@OARcorp.com On-Line Applications Research Ask me about RTEMS: a free RTOS Huntsville AL 35805 Support Available (256) 722-9985 --------------090400010609070300010900 Content-Type: text/plain; charset="windows-1252"; name="sim_erc32.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="sim_erc32.diff" Content-length: 713 2013-03-13 Joel Sherrill * Makefile.in: Include build directory in search path to find config.h Index: sim/erc32/Makefile.in =================================================================== RCS file: /cvs/src/src/sim/erc32/Makefile.in,v retrieving revision 1.12 diff -u -r1.12 Makefile.in --- sim/erc32/Makefile.in 1 Jan 2013 06:41:35 -0000 1.12 +++ sim/erc32/Makefile.in 13 Mar 2013 14:18:43 -0000 @@ -45,7 +45,7 @@ # There is AC_C_BIGENDIAN but it doesn't handle float endianness. # [Are int/float endians every different on a sparc?] end: $(srcdir)/end.c - $(CC_FOR_BUILD) $(srcdir)/end.c -o end + $(CC_FOR_BUILD) -I. $(srcdir)/end.c -o end end.h: end ./end > end.h --------------090400010609070300010900--