Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate CHANGES @ 154:a2c2fe8dbea3
Wrap up the current and next line position when invoking directives.
(in preparation for implementing #line)
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 00:56:12 -0400 |
parents | ccfcf1da156b |
children | a2f047301c15 |
rev | line source |
---|---|
151 | 1 pending |
2 - Declare usage() with PF(). From wiz. | |
3 | |
147 | 4 release 0.4 (20130713) |
141 | 5 - Fix stupid build problem introduced in 0.3.1. |
145 | 6 - Accept and ignore -m32, which imake issues willy-nilly on a bunch |
7 of platforms. I thought this had already been done, but apparently | |
8 not. | |
143 | 9 - Don't use the <err.h> functions. There are still people out there |
145 | 10 using legacy systems missing them. |
11 - Sort out some more issues pertaining to handling quoted strings. | |
12 - Add some more tests. | |
141 | 13 |
138 | 14 release 0.3.1 (20130709) |
135
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
15 - Don't leak memory and assert if a bad command-line option comes |
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
16 after a -D or a -include foo. |
137 | 17 - Since imake is a principal application for tradcpp and imake carefully |
18 hides what it's doing when you run it, when rejecting an invalid option | |
19 be sure to report *what* that option is. | |
135
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
20 |
133 | 21 release 0.3 (20130616) |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
127
diff
changeset
|
22 - Don't eval the control expression of the first #if of a block when |
127 | 23 already in a false block; it might not be valid. Reported by |
24 Baptiste Daroussin. | |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
127
diff
changeset
|
25 - Don't recognize comments within character constants. |
129
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
26 - Don't recognize macro argument parentheses or commas within strings, |
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
27 or within character constants either. |
127 | 28 |
124 | 29 release 0.2 (20130611) |
102 | 30 - auto-recognize more builtin PowerPC and mips macros |
103 | 31 - pass -Wunused (partly from Baptiste Daroussin) |
104 | 32 - allow absolute paths in include files (partly from Baptiste Daroussin) |
105
600f36cd7353
don't use getprogname() in the name of portability
David A. Holland
parents:
104
diff
changeset
|
33 - don't use getprogname() in the name of portability |
106
ecec7c16e3ba
add a couple more tests, taken from the 2010 tech-toolchain thread
David A. Holland
parents:
105
diff
changeset
|
34 - add tests arising from December 2010 tech-toolchain thread (one |
ecec7c16e3ba
add a couple more tests, taken from the 2010 tech-toolchain thread
David A. Holland
parents:
105
diff
changeset
|
35 from der Mouse, one of mine) |
107 | 36 - clean out usage of sys/cdefs.h macros and don't use the implementation |
37 namespace | |
109 | 38 - make -Wcomment work again |
112 | 39 - fix handling of relative includes |
110 | 40 - provide a man page |
115 | 41 - other minor improvements |
102 | 42 |
43 release 0.1 (20130610) | |
44 - first release, works with at least some imake templates |