2
0

CHANGES 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. release 0.5.3 (20190121)
  2. - Fix markup typo in the man page.
  3. - Abort on line numbering or column numbering overflow. Line
  4. numbers are limited to values that fit in "unsigned int". Also
  5. reject input lines longer than 2^32-1 characters. It seems
  6. reasonable to presume that any input that violates these
  7. constraints is someone screwing around and not a serious attempt
  8. to compile or preprocess anything useful. Done in response to
  9. n2129, but without getting into any of the silliness found there.
  10. - Recognize __ia64__ for IA64 builds.
  11. - Recognize __aarch64__ for 64-bit ARM builds, as sent in by
  12. various people.
  13. - Recognize __riscv__ and __riscv64__ for risc-v builds.
  14. release 0.5.2 (20160904)
  15. - Fix typo in -U usage message, noticed by Joerg.
  16. - Add a -debuglog option to send an execution trace to a file.
  17. Intended to be used when debugging imake templates and other
  18. complex input, not for debugging tradcpp itself.
  19. release 0.5.1 (20150612)
  20. - Fix a stupid regression in 0.5 that causes it to not recognize a
  21. pile of options.
  22. - Fix output corruption caused by mishandling which macros are
  23. currently in use. In particular, "curmacro" is only valid while
  24. we're parsing a macro name and arguments, and can change once we
  25. start expanding, so don't use it to clear the in-use flag. This
  26. problem has been around all along but was only just exposed.
  27. - Also don't set curmacro to null after calling expand_domacro as
  28. that can cause us to think a macro name we just read is defined().
  29. This one was introduced in 0.5.
  30. - Don't use "remove" as a local variable as gcc 4.1 gets upset
  31. about it vs. remove(3) in stdio.h.
  32. release 0.5 (20150612)
  33. - Don't report unclosed comments as "No newline at end of file".
  34. - Don't rely on <stdbool.h> existing, as (predictably) it doesn't
  35. work on Solaris.
  36. - Similarly, don't rely on C11 anonymous unions as the Solaris
  37. compiler vomits on them.
  38. - Typo fix in man page from Jason McIntyre; and change "Usage" to
  39. "usage" in usage for pedantic reasons, from Igor Sobrado.
  40. - Accept "-" as either input or output file name to mean stdin or
  41. stdout respectively. Suggested by Jonathan Gray.
  42. - Fix output spacing behavior to match gcc when newlines appear in or
  43. while looking for macro arguments. Partly from Joerg Sonnenberger.
  44. - Implement __FILE__ and __LINE__ macros. Mostly from Joerg Sonnenberger.
  45. - Implement #line. Partly from Joerg Sonnenberger.
  46. - Declare usage() with PF(). From wiz.
  47. release 0.4 (20130713)
  48. - Fix stupid build problem introduced in 0.3.1.
  49. - Accept and ignore -m32, which imake issues willy-nilly on a bunch
  50. of platforms. I thought this had already been done, but apparently
  51. not.
  52. - Don't use the <err.h> functions. There are still people out there
  53. using legacy systems missing them.
  54. - Sort out some more issues pertaining to handling quoted strings.
  55. - Add some more tests.
  56. release 0.3.1 (20130709)
  57. - Don't leak memory and assert if a bad command-line option comes
  58. after a -D or a -include foo.
  59. - Since imake is a principal application for tradcpp and imake carefully
  60. hides what it's doing when you run it, when rejecting an invalid option
  61. be sure to report *what* that option is.
  62. release 0.3 (20130616)
  63. - Don't eval the control expression of the first #if of a block when
  64. already in a false block; it might not be valid. Reported by
  65. Baptiste Daroussin.
  66. - Don't recognize comments within character constants.
  67. - Don't recognize macro argument parentheses or commas within strings,
  68. or within character constants either.
  69. release 0.2 (20130611)
  70. - auto-recognize more builtin PowerPC and mips macros
  71. - pass -Wunused (partly from Baptiste Daroussin)
  72. - allow absolute paths in include files (partly from Baptiste Daroussin)
  73. - don't use getprogname() in the name of portability
  74. - add tests arising from December 2010 tech-toolchain thread (one
  75. from der Mouse, one of mine)
  76. - clean out usage of sys/cdefs.h macros and don't use the implementation
  77. namespace
  78. - make -Wcomment work again
  79. - fix handling of relative includes
  80. - provide a man page
  81. - other minor improvements
  82. release 0.1 (20130610)
  83. - first release, works with at least some imake templates