From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28085 invoked by alias); 14 Dec 2019 17:29:07 -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 28073 invoked by uid 89); 14 Dec 2019 17:29:07 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-15.8 required=5.0 tests=AWL,BAYES_50,ENV_AND_HDR_SPF_MATCH,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS,USER_IN_DEF_SPF_WL autolearn=no version=3.3.1 spammy=H*f:sk:DB6PR05, configuregdb, 9534, configure-gdb X-HELO: mail-ot1-f44.google.com Received: from mail-ot1-f44.google.com (HELO mail-ot1-f44.google.com) (209.85.210.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 14 Dec 2019 17:29:06 +0000 Received: by mail-ot1-f44.google.com with SMTP id p8so3268733oth.10 for ; Sat, 14 Dec 2019 09:29:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=niYG60tWDRlPFnSKGE9rGPcBT37diUhIS8zhLzN7zWM=; b=RTkC6FGDYaaR5fl7KtcBqoXXr73Hd0slruNO7wpJJp8SkTbmdi/rNmtl/TgS4oAxb2 6vSdJ4PgiziKft5HKc/uQxK9ehtS64BHo9jIjwWKDivTvaEBpDSP3Q58K2+L71lCWETu iNSBjMSaytxOltVX9ZQTodpor5drIcE2Pdnfd0tMJM023yDQIkC2xfXG1MiTaYNjtC6W vDcCRCo76zeRxODk4j9chvtj3ginZ0BHHuNjRBcbI7Of8TJzVm9MldHwbjohMny1CDdh j6csgfpybaVwYTM1R8xlVL3BIltXa8CjmU/2K+LTAuejMB1/aULd+EvS+9Y31xEv2vWm rduw== MIME-Version: 1.0 References: In-Reply-To: From: "Christian Biesinger via gdb" Reply-To: Christian Biesinger Date: Sat, 14 Dec 2019 17:29:00 -0000 Message-ID: Subject: Re: building GDB 9.0.50.20191206 To: Wadud Miah Cc: "gdb@sourceware.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg00025.txt.bz2 On Thu, Dec 12, 2019 at 5:47 AM Wadud Miah wrote: > > Hi everyone, > > I am trying to build GDB 9.0.50.20191206 from source and am getting the following error: > > configure: error: source directory already configured; run "make distclean" there first > configure: error: .././../../gnulib/configure failed for build-gnulib-gdbserver > configure: error: ./configure failed for gdbserver > make[1]: *** [Makefile:9534: configure-gdb] Error 1 > make[1]: Leaving directory '/usr/local/src/gdb-9.0.50.20191206' > make: *** [Makefile:852: all] Error 2 > > I don't need the server component of GDB as I will be debugging locally, but could not find any option in the configure script to disable the building of the server component. Any help will be greatly appreciated. For reference, the option to disable gdbserver is --disable-gdbserver (see gdb/configure --help) Christian