KHMan wrote:
grischka wrote:
While I was in refactoring mood I created 4 new files:
tcc.h
tccpp.c
tccgen.c
tccmain.c
That is tcc.c split into parts.
http://repo.or.cz/w/tinycc.git?a=shortlog;h=35bb7a93
Do we want this?
I don't see why not, tiny is not really tiny anymore because there is
some degree of gcc compatibility anyway. An "all.c" can always be
added to cater for whole-program optimization aficionados...
"all.c" could be as simple as:
#include "tccpp.c"
#include "tccgen.c"
#include "tccmain.c"
#include "libtcc.c"
...
Not sure it was what you mean.