From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6912 invoked by alias); 25 Oct 2013 15:44:31 -0000 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 Received: (qmail 6899 invoked by uid 89); 25 Oct 2013 15:44:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f180.google.com Received: from mail-pd0-f180.google.com (HELO mail-pd0-f180.google.com) (209.85.192.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 25 Oct 2013 15:44:29 +0000 Received: by mail-pd0-f180.google.com with SMTP id p10so4130726pdj.11 for ; Fri, 25 Oct 2013 08:44:27 -0700 (PDT) X-Received: by 10.66.139.166 with SMTP id qz6mr11441524pab.88.1382715867597; Fri, 25 Oct 2013 08:44:27 -0700 (PDT) Received: from [192.168.1.100] ([115.199.134.184]) by mx.google.com with ESMTPSA id de1sm10306992pbc.7.2013.10.25.08.44.25 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 25 Oct 2013 08:44:26 -0700 (PDT) Message-ID: <526A93A0.6030203@gmail.com> Date: Fri, 25 Oct 2013 15:44:00 -0000 From: asmwarrior User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Andreas Schwab CC: gdb@sourceware.org Subject: Re: How to exclude some subfolders when building gdb References: <5269E05A.80500@gmail.com> <87y55hn302.fsf@igel.home> In-Reply-To: <87y55hn302.fsf@igel.home> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-10/txt/msg00151.txt.bz2 On 2013-10-25 16:55, Andreas Schwab wrote: > asmwarrior 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