man cpp
cpp predefines:
$ > foo.h
$ /lib/cpp -dM foo.h
#define linux 1
#define i386 1
#define __ELF__ 1
#define unix 1
gcc+cpp predefine:
$ cc -E -dM foo.h
#define __linux__ 1
#define linux 1
#define __i386__ 1
#define __i386 1
#define __GNUC_MINOR__ 7
#define __i486__ 1
#define i386 1
#define __unix 1
#define __unix__ 1
#define __GNUC__ 2
#define __linux 1
#define __ELF__ 1
#define unix 1
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.altern.org/andrebalsa/doc/lkml-faq.html