From: collver AT dnc DOT net Subject: Re: still installation problems 26 Mar 1997 16:36:40 -0800 Approved: cygnus DOT gnu-win32 AT cygnus DOT com Distribution: cygnus Message-ID: <18244299105510.cygnus.gnu-win32@dnc.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Comments: Authenticated sender is Original-To: bpr AT gecko DOT de, gnu-win32 AT cygnus DOT com In-reply-to: X-mailer: Pegasus Mail for Win32 (v2.53) Original-Sender: owner-gnu-win32 AT cygnus DOT com > I unpacked all.tar.gz in one directory with the > preconfigured subdirs, set PATH to ".../H-i386-cygwin32/bin/" > and GCC_EXEC_PREFIX to ".../H-i386-cygwin32/lib/gcc-lib/" > and get follwing result with gcc: > > bash$ gcc tst.c > gcc: installation problem, cannot exec `cpp': No such file or directory > gcc: Internal compiler error: program cpp got fatal signal 127 > > Any ideas what this means, what happend or what I can do or search for? Try looking at your batch file where you set the environment variables. This may fail because of the lowercase variable name: set gcc_exec_prefix=c:\cygnus\H-i386-cygwin32\lib\gcc-lib\ This may fail because the spaces before the path will actually be stored in the variable: set GCC_EXEC_PREFIX = c:\cygnus\H-i386-cygwin32\lib\gcc-lib\ This ought to work: set GCC_EXEC_PREFIX=c:\cygnus\H-i386-cygwin32\lib\gcc-lib\ Ben. - For help on using this list, send a message to "gnu-win32-request AT cygnus DOT com" with one line of text: "help".