This is the mail archive of the
gdb@sourceware.org
mailing list for the GDB project.
Re: How to exclude some subfolders when building gdb
- From: asmwarrior <asmwarrior at gmail dot com>
- To: Andreas Schwab <schwab at linux-m68k dot org>
- Cc: gdb at sourceware dot org
- Date: Fri, 25 Oct 2013 23:52:00 +0800
- Subject: Re: How to exclude some subfolders when building gdb
- Authentication-results: sourceware.org; auth=none
- References: <5269E05A dot 80500 at gmail dot com> <87y55hn302 dot fsf at igel dot home>
On 2013-10-25 16:55, Andreas Schwab wrote:
> asmwarrior <asmwarrior@gmail.com> writes:
>
>> > So, my question is: is there any way to disable the building of those extra targets? I don't need those targets when building GDB.
> --disable-...
>
> Andreas.
Hi, many thanks, it works fine with the following configure options:
mkdir mybuild
cd mybuild
../binutils-gdb/configure \
CFLAGS="-O0 -g" \
--prefix=/mingw \
--host=mingw32 \
--build=mingw32 \
--target=mingw32 \
--with-python=/python/python \
--with-expat \
--disable-nls \
--disable-binutils \
--disable-gas \
--disable-ld \
--disable-gprof
Thank you for the help.
Yuanhui Zhang