This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
cpp problem found by imake
- To: zack at wolery dot cumb dot org, gcc-bugs at gcc dot gnu dot org
- Subject: cpp problem found by imake
- From: Jakub Jelinek <jakub at redhat dot com>
- Date: Tue, 2 May 2000 18:02:58 +0200
- Reply-To: Jakub Jelinek <jakub at redhat dot com>
Hi!
Current cpp does not also like the following snippet
(distilled from XF4.0 cf/ stuff):
#define Concat3(a,b,c) a##b##c
#define Header /usr/include/stdio
#define Include Concat3(<,Header,.h>)
#include Include
I've just checked SunPRO 4.2 and it preprocess this just fine, similarly to
cccp.
Does ISO mandate that this does not work or is it just a bug in cpplib?
If the latter, should I fix it myself or will you do that?
Jakub