From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20581 invoked by alias); 8 Oct 2003 05:16:34 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 20573 invoked from network); 8 Oct 2003 05:16:33 -0000 Received: from unknown (HELO universe.preston.net) (202.14.89.130) by sources.redhat.com with SMTP; 8 Oct 2003 05:16:33 -0000 Received: from cosmo.preston.net (cosmo.preston.net [202.14.10.54]) by universe.preston.net (8.11.6/8.11.6) with ESMTP id h985GOr10409; Wed, 8 Oct 2003 15:16:26 +1000 Subject: Re: need help compiling for Windows From: Philip Walford To: Sheryl Canter Cc: gcc-help@gcc.gnu.org In-Reply-To: <007901c38d43$b5ed2a10$6401a8c0@tpa21p> References: <006601c38cd5$0363f130$ad036c42@tpa21p> <007901c38d43$b5ed2a10$6401a8c0@tpa21p> Content-Type: text/plain Organization: Message-Id: <1065590184.1768.37.camel@cosmo> Mime-Version: 1.0 Date: Wed, 08 Oct 2003 05:16:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2003-10/txt/msg00104.txt.bz2 On Wed, 2003-10-08 at 12:27, Sheryl Canter wrote: > I've been trying all day to compile GCC for Windows, and I just can't do it. > I'm using the MinGW compiler as a boot compiler and cygwin for the > environment. I added c:\mingw\bin to the path, but I keep getting this error > message: You said you're using cygwin? Then you need to translate your paths to use '/' rather than '\'. Since cygwin is unix-like, '\x' is treated as a way of escaping 'x'. To include a '\' literally, you need '\\'. Philip.