From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qv1-xf31.google.com (mail-qv1-xf31.google.com [IPv6:2607:f8b0:4864:20::f31]) by sourceware.org (Postfix) with ESMTPS id 016A93846077 for ; Fri, 11 Sep 2020 08:46:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 016A93846077 Received: by mail-qv1-xf31.google.com with SMTP id cv8so4807132qvb.12 for ; Fri, 11 Sep 2020 01:46:07 -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=EZ7qdeB6k/4sLxeUhmpKhNaWm3KrG3q3EDnzphamAZI=; b=HjCB0ovZMIsn2n1Lx1OT0IkUoQZdSjAK7Oq64aI818nZTuH1SCS1/lt1z0t9hGu6sv yGiyqrG9j55wjr47MUMUS4gIQ7GT8kNUOtJH7Uaa2OdPiALucdvkmvdGHVaE5saIZS+o QWX/njHSavuCjTG8hVVPEeYgoBggFLPFwC/kVpZCwnVyZay1bgHxz4gaESmWi4eMiWfq YUk4wTw6AtVKPgykW5/9F4NUobvqNy58aO/O6rIDa7TfxByWDFrvVUQ68rm39P/Z8kgt hKqkw+5CxPIElyaWITrORATmU65C2eu+DkL+KsEfyNFUdxO9KjMszJ3bZrtKJoGqLUwX ce3A== X-Gm-Message-State: AOAM5313XKzEGAoyDFbgCD2xLpZnMPechTpUd2UWxMXP8s05ym8czXvi algsNiHz2/yCtEimSpRR4LtonKR2zeFlO7yLLnqVIUUCjN60mA== X-Google-Smtp-Source: ABdhPJzjdZ3KUrVs3APsNWXKJfdICP2E5F04MuWELTbFgbRueMsf+P4rVEmiI0wTNap1fiF5w8s4RQT6AOeRd+HOpAA= X-Received: by 2002:a0c:bec4:: with SMTP id f4mr955020qvj.14.1599813966406; Fri, 11 Sep 2020 01:46:06 -0700 (PDT) MIME-Version: 1.0 References: <20200910115339.52495057@windsurf.hq.k.grp> <20200911102955.71f38097@windsurf.hq.k.grp> In-Reply-To: <20200911102955.71f38097@windsurf.hq.k.grp> From: Christian Biesinger Date: Fri, 11 Sep 2020 10:45:30 +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.2 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: Fri, 11 Sep 2020 08:46:10 -0000 On Fri, Sep 11, 2020 at 10:29 AM Thomas Petazzoni wrote: > > On Thu, 10 Sep 2020 12:34:15 +0200 > Christian Biesinger wrote: > > > 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...? > > Well, I had missed the --disable-gdb option, and so for me a top-level > ./configure would always recurse into gdb/, and gdb/configure.ac does > check for ncurses. (technically it's make that recurses, not configure) It's true that gdb's configure checks for ncurses but that should be an optional dependency. Did you find that configure fails if ncurses is not found? Christian