annotate admin/notes/cpp @ 90789:c0409ee15cee

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 670-674) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 209-210) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-185
author Miles Bader <miles@gnu.org>
date Wed, 21 Mar 2007 13:33:07 +0000
parents 68c22ea6027c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
50518
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
1 ttn 2003-04-09
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
2
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
3 we use a C preprocesor not only in the normal compilation of .c files
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
4 into object files, but also for creating
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
5
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
6 src/Makefile
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
7 lib-src/Makefile
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
8
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
9 (delimited by comment "start of cpp stuff"). some cpp implementations
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
10 insert whitespace in between tokens, which explains the "$(dot)$(dot)"
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
11 and "UNEXEC_ALIAS" workarounds for unixoid systems and the bundled
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
12 tradcpp/ for vms. [NOTE: tradcpp/ not yet checked in.]
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
13
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
14 during makefile creation, the preprocessor symbol NOT_C_CODE is defined.
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
15 this should not be defined for normal .c file compilation.
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
16
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
17 there has been discussion on eliminating this use of cpp and relying
3cb74de71bcd Initial revision
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
diff changeset
18 solely on autoconf processing. rms says to leave it be.
89909
68c22ea6027c Sync to HEAD
Kenichi Handa <handa@m17n.org>
parents: 88123
diff changeset
19
68c22ea6027c Sync to HEAD
Kenichi Handa <handa@m17n.org>
parents: 88123
diff changeset
20 ;;; arch-tag: d654291e-9fc8-41b7-ab0c-d3cde842a8e0