| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | describe -fnormalize-inc-dirs in tcc-doc.texi | seyko | 2016-04-04 | 1 | -1/+5 |
| | | |||||
| * | Revert all of my changes to directories & codingstyle. | gus knight | 2015-07-29 | 1 | -0/+1300 |
| | | |||||
| * | Reorganize the source tree. | gus knight | 2015-07-27 | 1 | -1300/+0 |
| | | | | | | | | | | | * Documentation is now in "docs". * Source code is now in "src". * Misc. fixes here and there so that everything still works. I think I got everything in this commit, but I only tested this on Linux (Make) and Windows (CMake), so I might've messed something up on other platforms... | ||||
| * | Trim trailing spaces everywhere. | gus knight | 2015-07-27 | 1 | -23/+23 |
| | | |||||
| * | -fdollar-in-identifiers switch which enables '$' in identifiers | seyko | 2015-04-12 | 1 | -0/+3 |
| | | | | | | | | | | | library Cello: http://libcello.org/ which uses `$` and several variations of as macros. There is also RayLanguage which also uses it as a macro for a kind of ObjC style message passing: https://github.com/kojiba/RayLanguage This is a patch from Daniel Holden. | ||||
| * | fix the bug #31403: parser bug in structure | seyko | 2015-04-10 | 1 | -0/+5 |
| | | | | | | | - a warning: unnamed struct/union that defines no instances - allow a nested named struct declaration w/o identifier only when option -fms-extensions is used | ||||
| * | tcc-doc.texi: Explain VT_LLOCAL a bit better. | Edmund Grimley Evans | 2015-02-20 | 1 | -2/+4 |
| | | | | | And delete the sentence about it being removed. | ||||
| * | corrected a typo | Vincent Lefevre | 2014-04-07 | 1 | -1/+1 |
| | | |||||
| * | Def signedness != signed != unsigned for char | Thomas Preud'homme | 2014-02-06 | 1 | -1/+1 |
| | | | | | | | | | When checking for exact compatibility between types (such as in __builtin_types_compatible_p) consider the case of default signedness to be incompatible with both of the explicit signedness for char. That is, char is incompatible with signed char *and* unsigned char, no matter what the default signedness for char is. | ||||
| * | Add support for runtime selection of float ABI | Thomas Preud'homme | 2014-01-08 | 1 | -0/+3 |
| | | |||||
| * | Don't say compiler flags are warning options | Thomas Preud'homme | 2014-01-07 | 1 | -1/+1 |
| | | |||||
| * | Don't enable bound check if libgcc is used | Thomas Preud'homme | 2014-01-06 | 1 | -1/+1 |
| | | | | | | Bound check rely on some functions provided by libtcc. It should therefore not be enabled when libgcc is used. | ||||
| * | document $CPATH, $C_INCLUDE_PATH, $LIBRARY_PATH | Urs Janssen | 2013-02-20 | 1 | -3/+22 |
| | | |||||
| * | remove doubled prototype | Urs Janssen | 2013-02-18 | 1 | -2/+1 |
| | | | | | | fix documentation about __TINYC__ define __STDC_HOSTED__ like __STDC__ | ||||
| * | add version number to manpage | Urs Janssen | 2013-02-17 | 1 | -2/+3 |
| | | | | | | | | avoid c++/c99 style comments in preprocessor directives avoid leadings whitespaces in preprocessor directives mention implemented variable length arrays in documentation fixed ambiguous option in texi2html call (Austin English) | ||||
| * | - document -dumpversion | Urs Janssen | 2013-02-15 | 1 | -0/+3 |
| | | | | | - fixed a broken prototype | ||||
| * | tcc --help: update option summary | grischka | 2013-02-10 | 1 | -28/+40 |
| | | | | | tcc-doc.texi: also | ||||
| * | tcc.h: declare CValue.tab[LDOUBLE_SIZE/4] | grischka | 2013-02-08 | 1 | -1/+1 |
| | | | | | | | | | Should fix some warnings wrt. access out of array bounds. tccelf.c: fix "static function unused" warning x86_64-gen.c: fix "ctype.ref uninitialzed" warning and cleanup tcc-win32.txt: remove obsolete limitation notes. | ||||
| * | Inform user that -b only exists on i386. | Thomas Preud'homme | 2012-03-13 | 1 | -0/+2 |
| | | |||||
| * | tcc-doc: remove obsolete '-o option must also be given' | grischka | 2011-05-17 | 1 | -6/+4 |
| | | |||||
| * | update documentation to reflect VLA changes | Joe Soroka | 2011-04-09 | 1 | -3/+3 |
| | | |||||
| * | re-apply VLA by Thomas Preud'homme | Joe Soroka | 2011-04-06 | 1 | -3/+15 |
| | | |||||
| * | revert "update VT_STRUCT_SHIFT for new VT_VLA" | Joe Soroka | 2011-02-04 | 1 | -1/+1 |
| | | |||||
| * | Revert "Implement C99 Variable Length Arrays" | Thomas Preud'homme | 2011-02-05 | 1 | -14/+2 |
| | | | | | This reverts commit a5a50eaafeea0d3ca47bc8fb6baf983743470c60. | ||||
| * | Revert "Reorder increasingly VT_* constants in tcc.h" | Thomas Preud'homme | 2011-02-05 | 1 | -12/+12 |
| | | | | | This reverts commit 7f00523e2e1938fc3558164521fe3ecefd9e1747. | ||||
| * | update VT_STRUCT_SHIFT for new VT_VLA | Joe Soroka | 2011-02-04 | 1 | -1/+1 |
| | | |||||
| * | Reorder increasingly VT_* constants in tcc.h | Thomas Preud'homme | 2011-02-04 | 1 | -12/+12 |
| | | |||||
| * | Implement C99 Variable Length Arrays | Thomas Preud'homme | 2011-02-04 | 1 | -2/+14 |
| | | | | | | | | Implement C99 Variable Length Arrays in tinycc: - Support VLA with multiple level (nested vla) - Update documentation with regards to VT_VLA - Add a testsuite in tcctest.c | ||||
| * | Add missing dircategory and direntry to texi file | Thomas Preud'homme | 2010-09-10 | 1 | -0/+4 |
| | | |||||
| * | tcc: add "-Wl,-rpath=path" option (library search path) | grischka | 2009-12-19 | 1 | -0/+6 |
| | | |||||
| * | document -print-search-dirs | Bernhard Reutner-Fischer | 2009-12-01 | 1 | -0/+4 |
| | | | | | Signed-off-by: aldot <rep.dot.nop@gmail.com> | ||||
| * | win32: readme.txt->tcc-win32.txt, update tcc-doc | grischka | 2009-04-18 | 1 | -18/+16 |
| | | |||||
| * | update manual, changelog | grischka | 2008-03-31 | 1 | -12/+19 |
| | | |||||
| * | added verbosity levels (-vv -vvv) | grischka | 2008-03-31 | 1 | -1/+1 |
| | | |||||
| * | Accept standard input as an inputstream (Hanzac Chen) | grischka | 2008-03-31 | 1 | -4/+12 |
| | | |||||
| * | update | bellard | 2005-06-17 | 1 | -0/+17 |
| | | |||||
| * | win32 merge | bellard | 2005-04-14 | 1 | -3/+3 |
| | | |||||
| * | update | bellard | 2004-11-08 | 1 | -26/+48 |
| | | |||||
| * | update | bellard | 2004-11-08 | 1 | -1/+3 |
| | | |||||
| * | update | bellard | 2004-10-23 | 1 | -0/+26 |
| | | |||||
| * | both .globl and .global directives are accepted by as | bellard | 2004-10-02 | 1 | -0/+2 |
| | | |||||
| * | added -funsigned-char, -fsigned-char and -Wimplicit-function-declaration | bellard | 2003-10-17 | 1 | -2/+19 |
| | | |||||
| * | update | bellard | 2003-10-04 | 1 | -2/+22 |
| | | |||||
| * | fixed -w option - doc update (thanx to Romain Francoise) | bellard | 2003-10-04 | 1 | -2/+9 |
| | | |||||
| * | update | bellard | 2003-05-24 | 1 | -9/+50 |
| | | |||||
| * | automatic man page generation from tcc-doc.texi | bellard | 2003-05-18 | 1 | -4/+25 |
| | | |||||
| * | update | bellard | 2003-04-13 | 1 | -16/+20 |
| | | |||||
| * | spell fixes + texinfo format fixes by Peter Lund | bellard | 2003-04-10 | 1 | -132/+213 |
| | | |||||
| * | update | bellard | 2003-04-09 | 1 | -3/+6 |
| | | |||||
| * | update | bellard | 2003-01-06 | 1 | -1/+126 |
| | | |||||
