From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17921 invoked by alias); 25 Oct 2013 02:59:38 -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 17905 invoked by uid 89); 25 Oct 2013 02:59:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f48.google.com Received: from mail-pa0-f48.google.com (HELO mail-pa0-f48.google.com) (209.85.220.48) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 25 Oct 2013 02:59:36 +0000 Received: by mail-pa0-f48.google.com with SMTP id bj1so4299425pad.21 for ; Thu, 24 Oct 2013 19:59:34 -0700 (PDT) X-Received: by 10.66.187.34 with SMTP id fp2mr7393463pac.12.1382669974757; Thu, 24 Oct 2013 19:59:34 -0700 (PDT) Received: from [192.168.1.100] ([115.199.134.184]) by mx.google.com with ESMTPSA id b3sm5869925pbu.38.2013.10.24.19.59.32 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 24 Oct 2013 19:59:33 -0700 (PDT) Message-ID: <5269E05A.80500@gmail.com> Date: Fri, 25 Oct 2013 02:59: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: gdb@sourceware.org Subject: How to exclude some subfolders when building gdb Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-10/txt/msg00138.txt.bz2 Hi, when using the new gdb clone under Windows MSYS: git clone git://sourceware.org/git/binutils-gdb.git --config core.autocrlf=input --config core.eol=lf Then I create a folder mybuild, then run the top level configure: 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 Then make > log.txt 2>&1 && make install INSTALL_PROGRAM='install -s' -C gdb DESTDIR=/f/build_gdb/bin2013 I found that a lot of new exe files were generated in the build folder, e.g. binutils gas gprof ld If I remember correctly, I don't have those folders when using the old gdb.git mirror from the CVS. 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. Thanks. Yuanhui Zhang