From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16604 invoked by alias); 9 Apr 2014 20:21:27 -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 16592 invoked by uid 89); 9 Apr 2014 20:21:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-HELO: mail-pa0-f49.google.com Received: from mail-pa0-f49.google.com (HELO mail-pa0-f49.google.com) (209.85.220.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 09 Apr 2014 20:21:25 +0000 Received: by mail-pa0-f49.google.com with SMTP id lj1so2955083pab.22 for ; Wed, 09 Apr 2014 13:21:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=c89MokKrNBhTGS8RZIpizhD4ffxaNxm1EBdgKNJaFu8=; b=UHIJYY5CNKt94NS8sbN+jU57ZqdIOXuHJ8N4lyUiYIfocAYSePsJfNuaK3w4pAJGbY m1djMm6i4wLaozghxbs6FjNslKbg1QAq4v35YsEvVazgFUofDCRJhNpo3WtCo3X36Yo9 uhmmVRQeG7Quf2+Dw7zayFDnKzNsn9TDs0Z06ijE1g0X89fJ8k58auKz5eB/J+G3q/Nr bD3LKw3MziTjH7DH0IlITrtcGdz/DymQ8S5cBdCbUviVqtEBC7zWULDvUI0B3exYJB4x qP3cBoR1nU9a2H56mQLBBlmit5jUcOGvJdpzjxCuzf04afPJkjHm5D8ElXE1RcGtIpob OFaw== X-Gm-Message-State: ALoCoQmsdKWCVLqozIJPJDgkPeavKWHJeYtuXvUymIuxgJhqELmEErepCt/jU+Wuvizse4isDyco X-Received: by 10.66.230.166 with SMTP id sz6mr14594227pac.127.1397074883548; Wed, 09 Apr 2014 13:21:23 -0700 (PDT) Received: from linux (ip72-200-182-56.ri.ri.cox.net. [72.200.182.56]) by mx.google.com with ESMTPSA id g6sm9704867pat.2.2014.04.09.13.21.22 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 09 Apr 2014 13:21:22 -0700 (PDT) Date: Wed, 09 Apr 2014 20:21:00 -0000 From: Bob Rossi To: gdb@sourceware.org Subject: building gdb from git Message-ID: <20140409202119.GA1325@linux> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2014-04/txt/msg00034.txt.bz2 Hi, When I clone git I get quite a few projects. What's the simplest way to build only gdb? My first attempt was to do this: ../binutils-gdb/gdb/configure --prefix=$PWD/../prefix however this failed with a missing bfd.h. In general, if I only really want to build/modify gdb, should I attempt to build everything like, ../binutils-gdb/configure --prefix=$PWD/../prefix or should I install the dev packages for everything I'm missing? Also, why does configure work and let the build fail, rather than having configure detect the missing header files? Thanks, Bob Rossi