Sourcecode:
http://bellard.org/tcc/http://repo.or.cz/w/tinycc.gitForum problem:
http://lists.gnu.org/archive/html/tinycc-devel/2007-08/msg00035.html1: Run build-tcc.bat in win32 folder for config.h
2: Copy tcc.ppj and tiny_libmaker.ppj to win32 folder
3: Compile tcc.ppj project
4: Compile tiny_libmaker.ppj project
5: Run build-tcc.bat again for libtcc1.a library
From commandline tcc.exe only:
cc /Ze /Go -D__GNUC__ tcc.c
In tccpp.c change this:
tccpp.c line 72:
static const unsigned char tok_two_chars[] =
"<=\x9E>=\x9D!=\x95&&\xA0||\xA1++\xA4--\xA2==\x94<<\x01>>\x02+=\xAB"
"-=\xAD*=\xAA/=\xAF%=\xA5&=\xA6^=\xDE|=\xFC->\xCB..\xA8##\xB6";
In tiny_libmaker change this:
if (!mktemp(tfile)
to this:
if (!tmpnam(tfile)
2010-02-12 project files.
2010-04-06 project file for modular compilation.