From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27503 invoked by alias); 18 Aug 2006 13:34:40 -0000 Received: (qmail 27405 invoked by uid 48); 18 Aug 2006 13:34:32 -0000 Date: Fri, 18 Aug 2006 13:34:00 -0000 Message-ID: <20060818133432.27404.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug bootstrap/28770] one reference to powerpc-ibm-eabi-ar.exe when only xar.exe installed In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "bonzini at gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2006-08/txt/msg01446.txt.bz2 List-Id: ------- Comment #5 from bonzini at gnu dot org 2006-08-18 13:34 ------- Anyway, the simplest solution for you is to build in a combined tree: cd build && rm -rf ppc_combined_src ppc_combined && \ mkdir ppc_combined_src ppc_combined cd build/binutils-$(BINUTILS_VERSION) && find . -print | \ cpio -pdlm ../ppc_combined_src cd build/gcc-$(GCC_VERSION) && find . -print | \ cpio -pdlmu ../ppc_combined_src cd build/ppc_combined && ../ppc_combined_src/configure \ --prefix=$(HOME)/local --program-prefix=x --target=powerpc-ibm-eabi cd build/ppc_combined && make && make install It works for either native or cross, and for native it will test the binutils by using them to compile themselves. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28770