From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72f.google.com (mail-qk1-x72f.google.com [IPv6:2607:f8b0:4864:20::72f]) by sourceware.org (Postfix) with ESMTPS id B08453971C08 for ; Thu, 10 Sep 2020 10:34:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B08453971C08 Received: by mail-qk1-x72f.google.com with SMTP id w186so5533709qkd.1 for ; Thu, 10 Sep 2020 03:34:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=mF01p5Ya1cQuu6/Ixg4j18Lm+nBT0Lq1zcCcvHioafk=; b=bj6hF+jfyq6RzjgBwe1mbzs8O1lXabdlPtiJQCte/3kS9vZAgndNCMFvlp+8b5QDc7 N0BFKSelUaav5Fe6LU8IbBOQVinjLDyoxvjzLad9TEOmSoFVTK7wR+P0sFFQfQfaTNTx 9e/zMFigou4QSti1JrEQAfDt6BckVRZc6xBY57n2gVGky+DVPEGtAvhMsrJHYd5UPGEH oZp2JlfHls/o8OceBJhrgMgjkCLdwwWZXZa2ymHUQkCbcG7s+BC5C5wPZJhXcu9echev 3chn7Zxy3ptHDWSWrFKajsumtOK45gQg6Zbu+uCSOoBymGvSpzHAWksYKHqlpMgGIQqg 0K8w== X-Gm-Message-State: AOAM531qc1gp7Agep8QhjTLWjX1mhtFxIyYfS0nKWcS1QrzsxfeHhCqS Nz5lap9HxclqP0FNOVL4uf7Wn/fPACxezWrzxNhQuQ== X-Google-Smtp-Source: ABdhPJytSu3XPFE/oTBgxLCs40QVt4AJfwScr/iDhStqez0zuKPp6bKwlPKryonJBH9zw4P9e1KdtLkhuxX3kZZMw4k= X-Received: by 2002:a05:620a:159b:: with SMTP id d27mr7091025qkk.28.1599734091829; Thu, 10 Sep 2020 03:34:51 -0700 (PDT) MIME-Version: 1.0 References: <20200910115339.52495057@windsurf.hq.k.grp> In-Reply-To: <20200910115339.52495057@windsurf.hq.k.grp> From: Christian Biesinger Date: Thu, 10 Sep 2020 12:34:15 +0200 Message-ID: Subject: Re: Building just gdbserver ? To: Thomas Petazzoni Cc: Reuben Thomas via Gdb , Tom Tromey , Romain Naour Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-19.1 required=5.0 tests=BAYES_00, DKIMWL_WL_MED, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, ENV_AND_HDR_SPF_MATCH, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, USER_IN_DEF_DKIM_WL, USER_IN_DEF_SPF_WL autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2020 10:34:53 -0000 On Thu, Sep 10, 2020 at 11:53 AM Thomas Petazzoni wrote: > Prior to the move of gdb/gdbserver/ to the top-level > (919adfe8409211c726c1d05b47ca59890ee648f1), and its use of the common > gnulib (1a627e7e6c61e97951932e3a9c5fb706efe3ef3e), it was possible to > build just gdbserver by doing: > > $ cd gdb/gdbserver/ > $ ./configure > > This is a feature that was used by the Buildroot build system when we > only needed to build gdbserver and not the full gdb. > > What is now the recommended way to build just gdbserver ? See the "Building" section in https://github.com/bminor/binutils-gdb/blob/master/gdbserver/README > Running the top-level configure script would be annoying, as it checks > for ncurses, which would make ncurses a mandatory requirement to build > gdbserver, which by itself doesn't need ncurses. I don't believe the toplevel configure script checks for ncurses...? Christian