From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id s/QaBf1kOGE9UAAAWB0awg (envelope-from ) for ; Wed, 08 Sep 2021 03:23:41 -0400 Received: by simark.ca (Postfix, from userid 112) id 01C601EE22; Wed, 8 Sep 2021 03:23:40 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id BAA451EDDB for ; Wed, 8 Sep 2021 03:23:39 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3BD8E386186E for ; Wed, 8 Sep 2021 07:23:39 +0000 (GMT) Received: from s810.sureserver.com (s810.sureserver.com [195.42.142.37]) by sourceware.org (Postfix) with ESMTPS id 78BC338515DA for ; Wed, 8 Sep 2021 07:23:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 78BC338515DA Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=strikr.io Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=strikr.io DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=strikr.io; h=date:from :reply-to:to:subject:message-id:mime-version:content-type; s= dkim; bh=Y0nv5iKE1nxlYIn7LF5PQArGTEl5/yuZZI5GeSZlyJA=; b=qGE3rgR 8X/2bskrP56dEjMx8B4nu42PAoCapx2ou81EUHoehT4jVb4QlE+WbiMM4QsvOzxV rfoBwY3fJyLnSmIYDTozxK/0Psxqn90ZfmAsxlzHadqNGS/K/L0J7G3mE620Vwxz OCfkelDAynCzvQUWIJTrK8/lxsT2fEVhZZWE= Received: (qmail 48465 invoked by uid 1001); 8 Sep 2021 07:23:22 -0000 Received: from unknown (HELO gladiator) (pop-before-smtp-bcr@49.207.221.9) by 195.42.142.233 with ESMTPA; 8 Sep 2021 07:23:22 -0000 Date: Wed, 8 Sep 2021 07:25:09 +0000 (UTC) From: SAIFI To: gdb@sourceware.org Subject: building GDB natively using 'configure' at 'two' levels Message-ID: <39174ae-8f97-1a1d-23e4-54688976504a@strikr.io> MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII 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: , Reply-To: saifi@strikr.io Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" Hi: git cloned GDB and would like to build GDB natively using 'configure' at 'two' levels. at the top of the source tree ${SRC}/gdb/, i have ${SRC}/gdb/configure \ --prefix=/opt/gdb \ --datadir=/opt/gdb/data \ --htmldir=/opt/gdb/doc \ --disable-binutils \ --disable-ld \ --disable-gold \ --disable-gas \ --disable-sim \ --disable-gprof \ and at ${SRC}/gdb/gdb/, i have ${SRC}/gdb/gdb/configure \ --prefix=/opt/gdb \ --datadir=/opt/gdb/data \ --htmldir=/opt/gdb/doc \ --disable-largefile \ --with-gnu-ld \ --with-expat=no \ --with-python=no \ --with-guile=no \ --with-intel-pt=no \ --with-babeltrace=no what is the recommended way to run 'configure' at the top of the source tree, so that it will execute the custom configure in gdb/gdb/ ? warm regards Saifi.