cpp again
phi gcc
phi.gcc@gmail.com
Sat Mar 1 15:34:00 GMT 2014
Hi All,
I narrowed down a problem that break my builds...
C4N1$ cat c.c
#define L "cd"
s="ab" L "ef";
s="ab"L "ef";
s="ab" L"ef";
s="ab"L"ef";
C4N1$ cc -E c.c
# 1 "c.c"
# 1 "<command-line>"
# 1 "/usr/include/stdc-predef.h" 1 3 4
# 1 "<command-line>" 2
# 1 "c.c"
s="ab" "cd" "ef";
s="ab""cd" "ef";
s="ab" L"ef";
s="ab"L"ef";
C4N1$
Why the last 2 L are not expansed ? other compilers (non linux) do
expand all of them.
Thanx on advance
Cheers,
Phi
More information about the Gcc-help
mailing list