Re: cygwin gcc performance

2004-06-05 Thread Gerrit P. Haase
Hallo Matthieu, Could someone explain me why gcc cygwin compiler take so long to build a simple hello world program compared with mingw ? The system calls go through cygwin1.dll and not directly to the system (for every for executable linked against cygwin1.dll). You may speed up your

Re: cygwin gcc performance

2004-06-05 Thread Gerrit P. Haase
Hello Tim, Igor wrote: Also, in the future, please *attach* your cygcheck output to your messages Tim wrote: Looking at the Cygwin page on reporting errors, it says: Run cygcheck -s -v -r cygcheck.out and include that file as an attachment in your report. Text attachments need a .txt

Re: cygwin gcc performance

2004-06-05 Thread Tim Prince
At 09:23 AM 6/5/2004, you wrote: Hello Tim, Igor wrote: Also, in the future, please *attach* your cygcheck output to your messages Tim wrote: Looking at the Cygwin page on reporting errors, it says: Run cygcheck -s -v -r cygcheck.out and include that file as an attachment in your report.

cygwin gcc performance

2004-06-04 Thread Matthieu VIAL
Hello, Could someone explain me why gcc cygwin compiler take so long to build a simple hello world program compared with mingw ? Thank you test.c : #include stdlib.h #include stdio.h int main(void) { printf(Hello\n); } $ time gcc test.c -o test real0m2.409s user0m0.291s sys

Re: cygwin gcc performance

2004-06-04 Thread Igor Pechtchanski
On Fri, 4 Jun 2004, Matthieu VIAL wrote: Hello, Could someone explain me why gcc cygwin compiler take so long to build a simple hello world program compared with mingw ? Cygwin is a POSIX emulation layer. Using the POSIX emulation is bound to be less efficient than running the native

Re: cygwin gcc performance

2004-06-04 Thread Tim Hubberstey
--- Igor Pechtchanski [EMAIL PROTECTED] wrote: ... Also, in the future, please *attach* your cygcheck output to your messages as an uncompressed text attachment, instead of including it inline, since that produces false positives in archive searches. Igor Looking at the Cygwin page

RE: cygwin gcc performance

2004-06-04 Thread Hannu E K Nevalainen
From: Igor Pechtchanski Sent: Friday, June 04, 2004 6:08 PM On Fri, 4 Jun 2004, Matthieu VIAL wrote: Hello, Could someone explain me why gcc cygwin compiler take so long to build a simple hello world program compared with mingw ? Cygwin is a POSIX emulation layer. Using the POSIX

RE: cygwin gcc performance

2004-06-04 Thread Igor Pechtchanski
On Fri, 4 Jun 2004, Hannu E K Nevalainen wrote: From: Igor Pechtchanski Sent: Friday, June 04, 2004 6:08 PM On Fri, 4 Jun 2004, Matthieu VIAL wrote: Hello, Could someone explain me why gcc cygwin compiler take so long to build a simple hello world program compared with mingw