From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31085 invoked by alias); 12 Dec 2007 23:04:09 -0000 Received: (qmail 31066 invoked by uid 22791); 12 Dec 2007 23:04:09 -0000 X-Spam-Check-By: sourceware.org Received: from dessent.net (HELO dessent.net) (69.60.119.225) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 12 Dec 2007 23:04:04 +0000 Received: from localhost ([127.0.0.1] helo=dessent.net) by dessent.net with esmtp (Exim 4.50) id 1J2acT-0002RY-CW; Wed, 12 Dec 2007 23:04:01 +0000 Message-ID: <476068DF.6FBFBE0F@dessent.net> Date: Wed, 12 Dec 2007 23:04:00 -0000 From: Brian Dessent Reply-To: gcc-help@gcc.gnu.org X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) MIME-Version: 1.0 To: Rick Mann CC: Tim Prince , gcc-help@gcc.gnu.org Subject: Re: Should I be able to build cross gcc 4.x on Cygwin? References: <710C780E-6CF3-4950-9A39-8CFC26B08C2D@latencyzero.com> <475F3CA6.5090508@computer.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-12/txt/msg00248.txt.bz2 Rick Mann wrote: > make[4]: *** No rule to make target `../../combined/bfd/../include/ > aout/ar.h', n > eeded by `archive.lo'. Stop. This looks like an incorrectly combined tree. Are you using the "find | cpio"/hard link method? Because you seem to have taken the include/ dir from the gcc repo and not the src repo, but that will not work; you need to properly combine them to be a union of both sets. The src repo does contain include/aout/ar.h but the gcc repo does not. Brian