From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 Reply-To: saifi@strikr.io 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-Spam-Status: No, score=2.4 required=5.0 tests=BAYES_20, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_ABUSEAT, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Wed, 08 Sep 2021 07:23:26 -0000 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.