Re: How to exclude some subfolders when building gdb
asmwarrior <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
On 2013-10-25 16:55, Andreas Schwab wrote: > asmwarrior <[email protected]> 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