added 'A' asm constraint
[tinycc.git] / Changelog
bloba59b0344b1b7e6c7fb367d5d9ef7021a46615a29
1 version 0.9.17:
3 - PLT generation fix
4 - tcc doc fixes (Peter Lund)
5 - struct parse fix (signaled by Pedro A. Aranda Gutierrez)
6 - better _Bool lvalue support (signaled by Alex Measday)
7 - function parameters must be converted to pointers (signaled by Neil Brown)
8 - sanitized string and character constant parsing
9 - fixed comment parse (signaled by Damian M Gryski)
10 - fixed macro function bug (signaled by Philippe Ribet)
11 - added configure (initial patch by Mitchell N Charity)
12 - added '-run' and '-v' options (initial patch by vlindos)
13 - added real date report in __DATE__ and __TIME__ macros
15 version 0.9.16:
17 - added assembler language support
18 - added GCC inline asm() support
19 - fixed multiple variable definitions : uninitialized variables are
20   created as COMMON symbols.
21 - optimized macro processing
22 - added GCC statement expressions support
23 - added GCC local labels support
24 - fixed array declaration in old style function parameters
25 - support casts in static structure initializations
26 - added various __xxx[__] keywords for GCC compatibility
27 - ignore __extension__ GCC in an expression or in a type (still not perfect)
28 - added '? :' GCC extension support
30 version 0.9.15:
32 - compilation fixes for glibc 2.2, gcc 2.95.3 and gcc 3.2.
33 - FreeBSD compile fixes. Makefile patches still missing (Carl Drougge).
34 - fixed file type guessing if '.' is in the path.
35 - fixed tcc_compile_string()
36 - add a dummy page in ELF files to fix RX/RW accesses (pageexec at
37   freemail dot hu).
39 version 0.9.14:
41 - added #warning. error message if invalid preprocessing directive.
42 - added CType structure to ease typing (faster parse).
43 - suppressed secondary hash tables (faster parse).
44 - rewrote parser by optimizing common cases (faster parse).
45 - fixed signed long long comparisons.
46 - fixed 'int a(), b();' declaration case.
47 - fixed structure init without '{}'.
48 - correct alignment support in structures.
49 - empty structures support.
50 - gcc testsuite now supported.
51 - output only warning if implicit integer/pointer conversions.
52 - added static bitfield init.
54 version 0.9.13:
56 - correct preprocessing token pasting (## operator) in all cases (added
57   preprocessing number token).
58 - fixed long long register spill.
59 - fixed signed long long '>>'.
60 - removed memory leaks.
61 - better error handling : processing can continue on link errors. A
62   custom callback can be added to display error messages. Most
63   errors do not call exit() now.
64 - ignore -O, -W, -m and -f options
65 - added old style function declarations
66 - added GCC __alignof__ support.
67 - added GCC typeof support.
68 - added GCC computed gotos support.
69 - added stack backtrace in runtime error message. Improved runtime
70   error position display.
72 version 0.9.12:
74 - more fixes for || and && handling.
75 - improved '? :' type handling.
76 - fixed bound checking generation with structures
77 - force '#endif' to be in same file as matching '#if'
78 - #include file optimization with '#ifndef #endif' construct detection
79 - macro handling optimization
80 - added tcc_relocate() and tcc_get_symbol() in libtcc.
82 version 0.9.11:
84 - stdarg.h fix for double type (thanks to Philippe Ribet).
85 - correct white space characters and added MSDOS newline support.
86 - fixed invalid implicit function call type declaration.
87 - special macros such as __LINE__ are defined if tested with defined().
88 - fixed '!' operator with relocated address.
89 - added symbol + offset relocation (fixes some static variable initializers)
90 - '-l' option can be specified anywhere. '-c' option yields default
91   output name. added '-r' option for relocatable output.
92 - fixed '\nnn' octal parsing.
93 - fixed local extern variables declarations.
95 version 0.9.10:
97 - fixed lvalue type when saved in local stack.
98 - fixed '#include' syntax when using macros.
99 - fixed '#line' bug.
100 - removed size limit on strings. Unified string constants handling
101   with variable declarations.
102 - added correct support for '\xX' in wchar_t strings.
103 - added support for bound checking in generated executables
104 - fixed -I include order.
105 - fixed incorrect function displayed in runtime error.
107 version 0.9.9:
109 - fixed preprocessor expression parsing for #if/#elif.
110 - relocated debug info (.stab section).
111 - relocated bounds info (.bounds section).
112 - fixed cast to char of char constants ('\377' is -1 instead of 255)
113 - fixed implicit cast for unary plus.
114 - strings and '__func__' have now 'char[]' type instead of 'char *'
115   (fixes sizeof() return value).
116 - added __start_xxx and __stop_xxx symbols in linker.
117 - better DLL creation support (option -shared begins to work).
118 - ELF sections and hash tables are resized dynamically.
119 - executables and DLLs are stripped by default.
121 version 0.9.8:
123 - First version of full ELF linking support (generate objects, static
124   executable, dynamic executable, dynamic libraries). Dynamic library
125   support is not finished (need PIC support in compiler and some
126   patches in symbol exporting).
127 - First version of ELF loader for object (.o) and archive (.a) files.
128 - Support of simple GNU ld scripts (GROUP and FILE commands)
129 - Separated runtime library and bound check code from TCC (smaller
130   compiler core).
131 - fixed register reload in float compare.
132 - fixed implicit char/short to int casting.
133 - allow array type for address of ('&') operator.
134 - fixed unused || or && result.
135 - added GCC style variadic macro support.
136 - optimized bound checking code for array access.
137 - tcc includes are now in $(prefix)/lib/tcc/include.
138 - more command line options - more consistent handling of multiple
139   input files.
140 - added tcc man page (thanks to Cyril Bouthors).
141 - uClibc Makefile update
142 - converted documentation to texinfo format.
143 - added developper's guide in documentation.
145 version 0.9.7:
147 - added library API for easy dynamic compilation (see libtcc.h - first
148   draft).
149 - fixed long long register spill bug.
150 - fixed '? :' register spill bug.
152 version 0.9.6:
154 - added floating point constant propagation (fixes negative floating
155   point constants bug).
157 version 0.9.5:
159  - uClibc patches (submitted by Alfonso Martone).
160  - error reporting fix
161  - added CONFIG_TCC_BCHECK to get smaller code if needed.
163 version 0.9.4:
165  - windows port (currently cannot use -g, -b and dll functions).
166  - faster and simpler I/O handling.
167  - '-D' option works in all cases.
168  - preprocessor fixes (#elif and empty macro args)
169  - floating point fixes
170  - first code for CIL generation (does not work yet)
172 version 0.9.3:
174  - better and smaller code generator.
175  - full ISOC99 64 bit 'long long' support.
176  - full 32 bit 'float', 64 bit 'double' and 96 bit 'long double' support.
177  - added '-U' option.
178  - added assembly sections support. 
179  - even faster startup time by mmaping sections instead of mallocing them.
180  - added GNUC __attribute__ keyword support (currently supports
181     'section' and 'aligned' attributes).
182  - added ELF file output (only usable for debugging now)
183  - added debug symbol generation (STAB format).
184  - added integrated runtime error analysis ('-g' option: print clear
185    run time error messages instead of "Segmentation fault").
186  - added first version of tiny memory and bound checker ('-b' option).
188 version 0.9.2:
190  - even faster parsing.
191  - various syntax parsing fixes.
192  - fixed external relocation handling for variables or functions pointers.
193  - better function pointers type handling.
194  - can compile multiple files (-i option).
195  - ANSI C bit fields are supported.
196  - beginning of float/double/long double support.
197  - beginning of long long support.
199 version 0.9.1:
201  - full ISOC99 initializers handling.
202  - compound literals.
203  - structures handle in assignments and as function param or return value.
204  - wide chars and strings.
205  - macro bug fix
207 version 0.9:
208  - initial version.