gcc -E -dD foo.c -DDATE="Wed Nov"
Vijay Sampath wrote:
This isn't the original program you posted to the list.
-----Original Message-----
From: Nitin Gupta [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 22, 2002 4:13 PM
To: Vijay Sampath
Cc: [EMAIL PROTECTED]
Subject: Re: -DDATE start giving error with gcc-3.2.3
Try on latest cygwin.
gcc-2.exe foo.c -DDATE="Wed Nov"
(gcc-2 is gcc 2.95)
and
gcc.exe foo.c -DDATE="Wed Nov"
(gcc is gcc 3.2)
where foo.c is
#include <w32api/windows.h>
#include <stdio.h>
main(){
printf ("Hello World!\n");
}
Vijay Sampath wrote:
I'll be very surprised if your program compiles under any C compiler on
Earth.
-Vijay
-----Original Message-----
From: Nitin Gupta [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 3:23 PM
To: [EMAIL PROTECTED]
Subject: -DDATE start giving error with gcc-3.2.3
Hi,
If I compiled following code with -DDATE="Wed Nov 22", it compiled fine using gcc-2.95, but when I updated my cygwin recently, it gives parse errors using gcc-3.2.3 (which, I think it should)
#include <w32api/windows.h>
#include <stdio.h>
typedef double DATE;
main(){
printf ("Hello World!\n");
}
Looks like wtypes.h also has DATE defined. But, it should have given me error earlier also, as wtypes had this definition earlier also.
Was this a gcc bug that got fixed in gcc-3.2.3? or is there anything else
Thanks,
Nitin
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/