Re: Odd hang of cc1.exe *resolved. /tmp/cygwin1.dll. Apologies * cpp/gcc

2020-05-07 Thread Shaddy Baddah
removing files one by one. Eventually I noticed a copy of an old cygwin1.dll (actually a custom build of 2.10.0) and that of course was the culprit. And it makes sense now of course. /usr/bin/as (and cc1) are going to load cygwin1.dll in /usr/bin, which is consistent with bash/mintty etc, because

Re: Odd hang of cc1.exe *now isolated to /tmp weirdness* cpp/gcc

2020-05-06 Thread Shaddy Baddah
Hi Doug, On 7/5/20 11:19 am, Doug Henderson via Cygwin wrote: I think this is the essence of your problem. It looks like you are mapping you temporary directory outside the cygwin directory tree, Not sure how you are doing it. For me, I have TMP=/tmp and TEMP=/tmp in my cygwin environment. In

Re: Odd hang of cc1.exe *now isolated to /tmp weirdness* cpp/gcc

2020-05-06 Thread Doug Henderson via Cygwin
On Wed, 6 May 2020 at 08:34, Shaddy Baddah <> wrote: > On 29/4/20 10:38 pm, Shaddy Baddah wrote: > > > > … And only when run out of my /tmp (which is custom mapped btw). > > > > | /tmp$ ls -li /usr/bin/as.exe /usr/x86_64-pc-cygwin/bin/as.exe > | 1688849860843563 -rwxr-xr-x 2

Re: Odd hang of cc1.exe *now isolated to /tmp weirdness* cpp/gcc

2020-05-06 Thread Shaddy Baddah
Hi, On 29/4/20 10:38 pm, Shaddy Baddah wrote: Matches what I see when I ctrl-d the *hung* 64-bit cc1. At this point, I am going to back right off. I am fairly sure now this is some form of BLODA. We do have something installed that logs all commands run. And that is so sacred to our

Re: Odd hang of cc1.exe *now further isolated, back to a fork issue* cpp/gcc

2020-04-29 Thread Shaddy Baddah
and did trigger a rebaseall... it hasn't helped. As mysterious as this problem is, I can't rule out fork issues, but I have new information that suggests it might be something odd with console/pty I/O??? OK. I'm back to a fork issue. It has to be. This is the ps output whilst cc1 is hung

Re: Odd hang of cc1.exe *now further isolated, potential console issues* cpp/gcc

2020-04-28 Thread Marco Atzeri via Cygwin
Am 29.04.2020 um 06:06 schrieb Shaddy Baddah: Hi Eliot, On 28/4/20 10:46 pm, Eliot Moss wrote: Could it be a cygwin fork problem?  Definitely possible in a 32-bit environment.  I had to rebase all the time. Now that I'm mostly in the 64-bit environment it's not such an issue. I suspected so

Re: Odd hang of cc1.exe *now further isolated, potential console issues* cpp/gcc

2020-04-28 Thread Shaddy Baddah
. As mysterious as this problem is, I can't rule out fork issues, but I have new information that suggests it might be something odd with console/pty I/O??? So, if I run cc1 from bash, under a command prompt window, it will will seemingly hang. However if I enter ctrl-d, the command resumes

Re: Odd hang of cc1.exe *now isolated somewhat* cpp/gcc

2020-04-28 Thread Eliot Moss
Could it be a cygwin fork problem? Definitely possible in a 32-bit environment. I had to rebase all the time. Now that I'm mostly in the 64-bit environment it's not such an issue. Regards - Eliot Moss -- Problem reports: https://cygwin.com/problems.html FAQ:

Re: Odd hang of cc1.exe *now isolated somewhat* cpp/gcc

2020-04-27 Thread Shaddy Baddah
Hi, On 27/4/20 4:54 pm, Shaddy Baddah wrote: Further, doing an strace seems to me to be a little revealing. Whilst I see cc1.exe in taskmgr, I do not see the process in strace. I realise now that I mightn't expect to see the cc1 process by name in the trace. But I have further information

Odd hang of cc1.exe, when invoking cpp/gcc

2020-04-27 Thread Shaddy Baddah
the child cc1 process, before returning to mintty. Otherwise mintty freezes up and I have to manually kill it too. From console, ctrl-c just works. This is happening on my Windows 10 desktop that is a corporate build of Windows. It is the subject of forced updates, lots of BLODA potential agents

cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2014-02-28 Thread Peter Rosin
Hi! If I: $ : tmp.c $ gcc -E -Wmissing-include-dirs tmp.c /dev/null I get this annoying warning on stderr: cc1: warning: ../../include/w32api: No such file or directory [enabled by default] Searching the 'net suggests that it's an old bug: http://cygwin.com/ml/cygwin/2013-07/msg00509.html

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2014-02-28 Thread Andrey Repin
Greetings, Peter Rosin! If I: $ : tmp.c $ gcc -E -Wmissing-include-dirs tmp.c /dev/null I get this annoying warning on stderr: cc1: warning: ../../include/w32api: No such file or directory [enabled by default] Searching the 'net suggests that it's an old bug: http://cygwin.com/ml

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2014-02-28 Thread Peter Rosin
On 2014-02-28 22:49, Andrey Repin wrote: Greetings, Peter Rosin! If I: $ : tmp.c $ gcc -E -Wmissing-include-dirs tmp.c /dev/null I get this annoying warning on stderr: cc1: warning: ../../include/w32api: No such file or directory [enabled by default] Searching the 'net suggests

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-29 Thread Achim Gratz
Achim Gratz Stromeko at NexGo.DE writes: The above warning appears when -Wmissing-include-dirs is in effect (and aborts compilation if -Werror is also given). The missing include path seems to be produced by the following compiler spec: %(cpp_cpu) [...] %{!nostdinc:%{!mno-win32:-idirafter

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-29 Thread JonY
On 7/29/2013 20:19, Achim Gratz wrote: Achim Gratz Stromeko at NexGo.DE writes: The above warning appears when -Wmissing-include-dirs is in effect (and aborts compilation if -Werror is also given). The missing include path seems to be produced by the following compiler spec: %(cpp_cpu)

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-29 Thread Corinna Vinschen
On Jul 29 12:19, Achim Gratz wrote: Achim Gratz Stromeko at NexGo.DE writes: The above warning appears when -Wmissing-include-dirs is in effect (and aborts compilation if -Werror is also given). The missing include path seems to be produced by the following compiler spec: %(cpp_cpu)

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-29 Thread Corinna Vinschen
On Jul 29 20:32, JonY wrote: On 7/29/2013 20:19, Achim Gratz wrote: Achim Gratz Stromeko at NexGo.DE writes: The above warning appears when -Wmissing-include-dirs is in effect (and aborts compilation if -Werror is also given). The missing include path seems to be produced by the

Re: cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-29 Thread Achim Gratz
Corinna Vinschen writes: It looks like this is a misbehaviour of gcc 4.7.3. There are practically always non-existant default include dirs, not only on Cygwin. If you try the same -Wmissing-include-dirs with gcc 4.8.1 on x86_64 Cygwin, there won't be such a warning. I have no idea if that

cc1: warning: ../../include/w32api: No such file or directory [enabled by default]

2013-07-24 Thread Achim Gratz
The above warning appears when -Wmissing-include-dirs is in effect (and aborts compilation if -Werror is also given). The missing include path seems to be produced by the following compiler spec: %(cpp_cpu) [...] %{!nostdinc:%{!mno-win32:-idirafter ../include/w32api%s -idirafter

Re: gcc4.7.2 cc1 error while loading shared libraries

2013-06-19 Thread Yaakov (Cygwin/X)
On 2013-06-19 00:40, Arthur Tu wrote: $ gcc-4 --version gcc-4 (GCC) 4.7.2 $ gcc-4 helloWorld.c /usr/lib/gcc/i686-pc-cygwin/4.7.2/cc1.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory For now, this version of gcc requires test versions

Re: gcc4.7.2 cc1 error while loading shared libraries

2013-06-19 Thread Arthur Tu
Thanks On 6/19/2013 2:01 PM, Yaakov (Cygwin/X) wrote: On 2013-06-19 00:40, Arthur Tu wrote: $ gcc-4 --version gcc-4 (GCC) 4.7.2 $ gcc-4 helloWorld.c /usr/lib/gcc/i686-pc-cygwin/4.7.2/cc1.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory

gcc4.7.2 cc1 error while loading shared libraries

2013-06-18 Thread Arthur Tu
$ gcc-4 --version gcc-4 (GCC) 4.7.2 $ gcc-3 --version gcc-3 (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) $ gcc-4 helloWorld.c /usr/lib/gcc/i686-pc-cygwin/4.7.2/cc1.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory $ gcc-3

Re: gcc4.7.2 cc1 error while loading shared libraries

2013-06-18 Thread Arthur Tu
I found this http://cygwin.com/ml/cygwin/2010-10/msg00063.html. And call cc1.exe from windows native console. It reported that cygwin1.dll is missing. However, cygwin1.dll do exist in /bin/, and $CYGWIN/bin/ is in my windows path. On 6/19/2013 1:40 PM, Arthur Tu wrote: $ gcc-4 --version

Re: Possible Windows 7 issue? cc1.exe: error while loading shared libraries: ?

2010-10-04 Thread Taggart Ashby
Hello, I am wondering if anyone has encountered or might now how to fix the following issue: /usr/lib/gcc/i686-pc-cygwin/3.4.4/cc1.exe: error while loading shared libraries:  ?: cannot open shared object file: No such file or directory I have been using cygwin with ease for a couple years now

Re: Possible Windows 7 issue? cc1.exe: error while loading shared libraries: ?

2010-10-04 Thread Tim Prince
On 10/4/2010 10:35 AM, Taggart Ashby wrote: This issue started when I upgraded my operating system to Windows 7 64-bit. Anytime I attempt to compile a C or C++ program (cc1plus.exe in that case), I get the above error. I only get the error if I attempt to compile from the windows command

Re: Possible Windows 7 issue? cc1.exe: error while loading shared libraries: ?

2010-10-04 Thread Stephen Leake
Taggart Ashby unknownsoldier1...@gmail.com writes: Hello, I am wondering if anyone has encountered or might now how to fix the following issue: /usr/lib/gcc/i686-pc-cygwin/3.4.4/cc1.exe: error while loading shared libraries:  ?: cannot open shared object file: No such file or directory I

Re: Possible Windows 7 issue? cc1.exe: error while loading shared libraries: ?

2010-10-04 Thread Taggart Ashby
On Mon, Oct 4, 2010 at 11:20 AM, Stephen Leake stephen.a.le...@nasa.gov wrote: Taggart Ashby unknownsoldier1...@gmail.com writes: Hello, I am wondering if anyone has encountered or might now how to fix the following issue: /usr/lib/gcc/i686-pc-cygwin/3.4.4/cc1.exe: error while loading

Re: can not exec cc1.exe

2007-05-10 Thread Jim Marshall
Brian Dessent wrote: Jim Marshall wrote: Here is the cygcheck -svr output. Hmm, you're using a local NTFS drive and $CYGWIN is not set to anything strage. So no more clues there. What are the attributes of the .lnk files? What happens if you manually delete them and recreate them as

gcc packaging bug [was: Re: can not exec cc1.exe]

2007-05-10 Thread Brian Dessent
Jim Marshall wrote: all of the mingw directories were still there. I manually deleted all the files in these directories (/usr/i686-pc-mingw and /usr/lib/gcc/i686-pc-mingw32). I then reran the cygwin setup and had it install the mingw tools. This fixed the problem. I am presuming that the

can not exec cc1.exe

2007-05-09 Thread Jim Marshall
. As such we installed the mingw cygwin packages, but when we use the -mno-cygwin option I get an error that it can not exec cc1.exe $ cc -mno-cygwin main.c cc: installation problem, cannot exec 'cc1': No such file or directory I have tried uninstalling and reinstalling the mingw packages

Re: can not exec cc1.exe

2007-05-09 Thread Brian Dessent
Jim Marshall wrote: I have tried uninstalling and reinstalling the mingw packages with no luck. The links appear ok in the mingw directory: /usr/i686-pc-mingw32 $ ls bin.lnk* include.lnk* lib.lnk* You've got something installed incorrectly then. If they are showing as .lnk files to

Re: can not exec cc1.exe

2007-05-09 Thread Jim Marshall
Brian Dessent wrote: Jim Marshall wrote: I have tried uninstalling and reinstalling the mingw packages with no luck. The links appear ok in the mingw directory: /usr/i686-pc-mingw32 $ ls bin.lnk* include.lnk* lib.lnk* You've got something installed incorrectly then. If they are showing

Re: can not exec cc1.exe

2007-05-09 Thread Brian Dessent
Jim Marshall wrote: Here is the cygcheck -svr output. Hmm, you're using a local NTFS drive and $CYGWIN is not set to anything strage. So no more clues there. What are the attributes of the .lnk files? What happens if you manually delete them and recreate them as working symlinks by hand?

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-13 Thread Thomas Antony
lrwxrwxrwx 1 Tom None 34 Jan 12 09:34 cc1.exe - ../../i686-pc-cygwin/3.4 .4/cc1.exe lrwxrwxrwx 1 Tom None 38 Jan 12 09:32 cc1plus.exe - ../../i686-pc-cygwin /3.4.4/cc1plus.exe lrwxrwxrwx 1 Tom None 39 Jan 12 09:34 collect2.exe - ../../i686-pc-cygwi n/3.4.4/collect2.exe

RE: gcc: installation problem, cannot exec 'cc1'

2007-01-13 Thread Dave Korn
On 13 January 2007 11:26, Thomas Antony wrote: Hello, The file crt2.o is present in /usr/lib/mingw. But the error remains the same. [EMAIL PROTECTED] ~ $ gcc -mno-cygwin hello.c /usr/bin/ld: crt2.o: No such file: No such file or directory collect2: ld returned 1 exit status I also

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-13 Thread Thomas Antony
... Nop. [EMAIL PROTECTED] ~ $ grep 'gcc\|mingw\|w32api' a.txt b.txt a.txt:gcc 3.4.4-3OK a.txt:gcc-core 3.4.4-3OK a.txt:gcc-g++ 3.4.4-3OK a.txt:gcc-mingw20040810-1 OK a.txt:gcc-mingw-core

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-13 Thread Igor Peshansky
Ugh, top-posting... Reformatted. On Sat, 13 Jan 2007, Thomas Antony wrote: On 1/13/07, Dave Korn [EMAIL PROTECTED] wrote: http://cygwin.com/acronyms/#PCYMTNQREAIYR. Thanks. [snip] It would be helpful if you could run cygcheck -c a.txt before doing so, cygcheck -c b.txt afterwards,

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-12 Thread Larry Hall (Cygwin)
/usr/lib/gcc/i686-pc-mingw32/3.4.4/ total 1234 lrwxrwxrwx 1 Tom None 34 Jan 12 09:34 cc1.exe - ../../i686-pc-cygwin/3.4 .4/cc1.exe lrwxrwxrwx 1 Tom None 38 Jan 12 09:32 cc1plus.exe - ../../i686-pc-cygwin /3.4.4/cc1plus.exe lrwxrwxrwx 1 Tom None 39 Jan 12 09:34 collect2.exe

gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Thomas Antony
-cygwin -o hello hello.c gcc: installation problem, cannot exec 'cc1': No such file or directory I see that it occurs only when I use the -mno-cygwin option. I searched google. I found I have to install gcc-mingw package. I installed it. But the problem still prevails. I also see that there is no /usr

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Larry Hall (Cygwin)
into this error. $ gcc -mno-cygwin -o hello hello.c gcc: installation problem, cannot exec 'cc1': No such file or directory I see that it occurs only when I use the -mno-cygwin option. I searched google. I found I have to install gcc-mingw package. I installed it. But the problem still prevails. I also see

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Brian Dessent
. $ gcc -mno-cygwin -o hello hello.c gcc: installation problem, cannot exec 'cc1': No such file or directory I see that it occurs only when I use the -mno-cygwin option. I searched google. I found I have to install gcc-mingw package. I installed it. But the problem still prevails. I also

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Thomas Antony
Hello, It still doesnt work. I reinstalled all the GCC and GCC-mingw packages. The cc1.exe is present. But it still doesnt work. Here is output of ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ $ ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ total 1234 -rwxr-xr--+ 1 Tom Users 547 Jan 6 20:44 cc1

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Larry Hall (Cygwin)
On 01/11/2007, Thomas Antony wrote: Hello, It still doesnt work. I reinstalled all the GCC and GCC-mingw packages. The cc1.exe is present. But it still doesnt work. Here is output of ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ $ ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ total 1234 -rwxr-xr

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Brian Dessent
Thomas Antony wrote: $ ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ total 1234 -rwxr-xr--+ 1 Tom Users 547 Jan 6 20:44 cc1.exe.lnk -rwxr-xr--+ 1 Tom Users 567 Jan 6 20:44 cc1plus.exe.lnk -rwxr-xr--+ 1 Tom Users 573 Jan 6 20:44 collect2.exe.lnk -rwx--+ 1 Tom None 412 May

RE: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Dave Korn
On 12 January 2007 03:17, Larry Hall (Cygwin) wrote: On 01/11/2007, Thomas Antony wrote: Hello, It still doesnt work. I reinstalled all the GCC and GCC-mingw packages. The cc1.exe is present. But it still doesnt work. Here is output of ls -l /usr/lib/gcc/i686-pc-mingw32/3.4.4/ $ ls -l

Re: gcc: installation problem, cannot exec 'cc1'

2007-01-11 Thread Thomas Antony
-mingw32/3.4.4/ total 1234 lrwxrwxrwx 1 Tom None 34 Jan 12 09:34 cc1.exe - ../../i686-pc-cygwin/3.4 .4/cc1.exe lrwxrwxrwx 1 Tom None 38 Jan 12 09:32 cc1plus.exe - ../../i686-pc-cygwin /3.4.4/cc1plus.exe lrwxrwxrwx 1 Tom None 39 Jan 12 09:34 collect2.exe - ../../i686-pc-cygwi n/3.4.4

RE: cc1.exe 0xc0000022

2005-12-22 Thread Richard Campbell
I'm trying to compile gettext under my cygwin, but after a while of this fun I got the message: cc1.exe - Application Error : The application failed to initialize properly (0xc022). Click on OK to terminate the application. (screenshot attached). Launching cc1.exe alone brings up

Re: CC1

2003-09-21 Thread Christopher Faylor
On Sun, Sep 21, 2003 at 12:34:24AM -0500, Robert McNulty Junior wrote: I had a problem solved by going into /etc/profile cc1 was needed by 3.3.1 gcc. The directory where cc1 resides (/usr/lib/gcc-lib/i686-pc-cygwin/3.3.1 needed to be placed in the path, so I added that to my profile under path

CC1

2003-09-20 Thread Robert McNulty Junior
I had a problem solved by going into /etc/profile cc1 was needed by 3.3.1 gcc. The directory where cc1 resides (/usr/lib/gcc-lib/i686-pc-cygwin/3.3.1 needed to be placed in the path, so I added that to my profile under path. HTH someone facing similar problems in the future. Robert McNulty Junior

1.3.20 gcc cannot exec cc1 update

2003-03-07 Thread Michael Graff Andersen
Hello I have made a little progress, I found mail about a problem similar to mine The solution was: chmod a+x /bin chmod a+x /lib/gcc-lib/i686-pc-cygwin/3.2/ now I get gcc hello.c -o hello /usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../../i686-pc-cygwin/bin/ld: cannot open crt0.o: No such file

Re: 1.3.20 gcc cannot exec cc1 update

2003-03-07 Thread Christopher Faylor
On Fri, Mar 07, 2003 at 01:23:22PM +0100, Michael Graff Andersen wrote: Hello I have made a little progress, I found mail about a problem similar to mine The solution was: chmod a+x /bin chmod a+x /lib/gcc-lib/i686-pc-cygwin/3.2/ now I get gcc hello.c -o hello

Vs: 1.30 gcc cannot exec cc1 update

2003-02-28 Thread Michael Graff Andersen
-Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [EMAIL PROTECTED] Til: [EMAIL PROTECTED] [EMAIL PROTECTED] Dato: 27. februar 2003 11:26 Emne: 1.30 gcc cannot exec cc1 update Hi Here are lastest steps I have done trying to get gcc 3.2 to work under cygwin. Removed all cygwin

Re: Vs: 1.30 gcc cannot exec cc1 update

2003-02-28 Thread Brian Keener
: installation problem, cannot exec `cc1': No such file or directory I will repeat my previous comment on this as it does sound a lot like a problem I had. Have you looked for broken symlinks. If not you should. That was a problem I had. First do a find / -type l -depth -print |pg take this list

cc1.exe linking to missing export cygwin1.dll:_ctype_

2003-02-27 Thread xiao chen
hi, can someone help me? i m using cygwin newest version to compile an old project. while i type make, the error msg is cc1.exe linking to the missing export cygwin1.dll:_ctype_..i guess the cygwin1.dll in my old project doesnt match the new version in cygwin package i hv juz downloaded

Re: cc1.exe linking to missing export cygwin1.dll:_ctype_

2003-02-27 Thread Larry Hall (RFK Partners, Inc.)
xiao chen wrote: hi, can someone help me? i m using cygwin newest version to compile an old project. while i type make, the error msg is cc1.exe linking to the missing export cygwin1.dll:_ctype_..i guess the cygwin1.dll in my old project doesnt match the new version in cygwin package i hv juz

RE: 1.30 gcc cannot exec \'cc1\'

2003-02-27 Thread michael . iber
configure:587: checking for mingw32 environment configure:599: gcc -c -O2 -pipe conftest.c 15 gcc: installation problem, cannot exec `cc1': No such file or directory configure: failed program was: -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http

Re: 1.30 gcc cannot exec \'cc1\'

2003-02-27 Thread Brian Keener
Sergey Okhapkin wrote: gcc: installation problem, cannot exec `cc1': No such file or directory configure: failed program was: You might want to look and see if you have any broken symlinks. I only find one for cc1.exe and that would be because of using mingw32 (I think) and it doesn't appear

Re: Re: 1.30 gcc cannot exec \\\'cc1\\\' updated with cygcheck.log

2003-02-25 Thread ida3248
I am trying to compile ORCA (www.orcaware.com) under cygwin and get an error under configure. I have traced the error to gcc under cygwin. I have tried different download mirrors without luck. I found some mails regarding this issue on the list and tried to reinstall gcc-mingw

1.30 gcc cannot exec \'cc1\'

2003-02-24 Thread ida3248
=i686-pc-cygwin --target=i686-pc-cygwin --enable-haifa --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --includedir=/nonexistent/include --libexecdir=/usr/sbin Thread model: posix gcc version 3.2 20020927 (prerelease) cc1 -lang-c -v -iprefix ../lib/gcc-lib/i686-pc-cygwin/3.2

1.30 gcc cannot exec \'cc1\'

2003-02-24 Thread David Starks-Browning
On Monday 24 Feb 03, [EMAIL PROTECTED] writes: Hi I am trying to compile ORCA (www.orcaware.com) under cygwin and get an error under configure. I have traced the error to gcc under cygwin. gcc -v --help gives: You've got a bit of learning to do if you think the Cygwin mailing list would

RE: 1.30 gcc cannot exec \'cc1\'

2003-02-24 Thread Sergey Okhapkin
if configure makes a mistake. configure:554: checking for Cygwin environment configure:570: gcc -c -O2 -pipe conftest.c 15 configure:587: checking for mingw32 environment configure:599: gcc -c -O2 -pipe conftest.c 15 gcc: installation problem, cannot exec `cc1': No such file or directory

1.30 gcc cannot exec \'cc1\' updated with cygcheck.log

2003-02-24 Thread Michael Graff Andersen
Hi I am trying to compile ORCA (www.orcaware.com) under cygwin and get an error under configure. I have traced the error to gcc under cygwin. I have tried different download mirrors without luck. I found some mails regarding this issue on the list and tried to reinstall gcc-mingw also without

Re: 1.30 gcc cannot exec \'cc1\' updated with cygcheck.log

2003-02-24 Thread Elfyn McBratney
I am trying to compile ORCA (www.orcaware.com) under cygwin and get an error under configure. I have traced the error to gcc under cygwin. I have tried different download mirrors without luck. I found some mails regarding this issue on the list and tried to reinstall gcc-mingw also without

gcc doesn't work: gcc: installation problem, cannot exec `cc1': No such file or directory

2003-02-14 Thread Niemann Hartmut
Hello! I installed the cygwin environment 1.3.20-1 including gcc on a Win2000 PC, and gcc does not work: $ gcc hello.c -lm gcc: installation problem, cannot exec `cc1': No such file or directory $ gcc --version gcc (GCC) 3.2 20020927 (prerelease) Copyright (C) 2002 Free Software Foundation, Inc

Re: gcc doesn't work: gcc: installation problem, cannot exec `cc1': No such file or directory

2003-02-14 Thread Joe Buehler
Niemann Hartmut wrote: I installed the cygwin environment 1.3.20-1 including gcc on a Win2000 PC, and gcc does not work: $ gcc hello.c -lm gcc: installation problem, cannot exec `cc1': No such file or directory I had a similar problem recently that was cured by a reinstall. -- Josef Bühler

cannot exec `cc1': No such file or directory

2002-10-16 Thread skyper
Hi, after updating to the latest 3.2 (from 8h ago) i get the above error message. Should gcc find in /usr/lib/gcc-lib/arch whateverversion/cc1 on his own? sample line: gcc -mno-cygwin -o hello.exe hello.c Also does not find his crt2.o and crtbegin.o etc. (gcc invokes: ld -Bdynamic -o

Re: cannot exec `cc1': No such file or directory

2002-10-16 Thread Christopher Faylor
On Wed, Oct 16, 2002 at 09:00:59AM +, skyper wrote: Hi, after updating to the latest 3.2 (from 8h ago) i get the above error message. Should gcc find in /usr/lib/gcc-lib/arch whateverversion/cc1 on his own? sample line: gcc -mno-cygwin -o hello.exe hello.c Also does not find his crt2.o

Re: cannot exec `cc1': No such file or directory

2002-10-16 Thread skyper
On Wed, Oct 16, 2002 at 11:39:15AM -0400, Christopher Faylor wrote: On Wed, Oct 16, 2002 at 09:00:59AM +, skyper wrote: Hi, after updating to the latest 3.2 (from 8h ago) i get the above error message. Should gcc find in /usr/lib/gcc-lib/arch whateverversion/cc1 on his own

Re: cannot exec `cc1': No such file or directory

2002-10-16 Thread Christopher Faylor
On Wed, Oct 16, 2002 at 05:10:03PM +, skyper wrote: On Wed, Oct 16, 2002 at 11:39:15AM -0400, Christopher Faylor wrote: Please send the output of 'cygcheck -r -s -v' as an attachment to this mailing list. here we go... That helped. You need to download the gcc-mingw package. I thought