[Tinycc-devel] tinycc i386-asm.c

2008-03-25 Thread grischka
CVSROOT:/sources/tinycc Module name:tinycc Changes by: grischka grischka 08/03/25 20:58:37 Modified files: . : i386-asm.c Log message: Comply to c89 compilers other than gcc (Hanzac Chen) CVSWeb URLs:

[Tinycc-devel] tinycc tcc.c tccelf.c

2008-03-25 Thread grischka
CVSROOT:/sources/tinycc Module name:tinycc Changes by: grischka grischka 08/03/25 21:04:48 Modified files: . : tcc.c tccelf.c Log message: Add -soname linker option (Marc Andre Tanner) CVSWeb URLs:

[Tinycc-devel] tinycc i386-asm.c win32/build-tcc.bat

2008-03-25 Thread grischka
CVSROOT:/sources/tinycc Module name:tinycc Changes by: grischka grischka 08/03/25 21:05:48 Modified files: . : i386-asm.c win32 : build-tcc.bat Log message: get rid of a warning and fix .bat CVSWeb URLs:

Re: [Tinycc-devel] How about the source code accepted as a input stream

2008-03-25 Thread grischka
From: Hanzac Chen: I think it will be quite useful to accepting source code from a input stream, not just read from the file specified in the arguments. If so, we can write some frontend programs to generate C code on the fly and redirect it to tcc to generate the binary code. If no file or

Re: [Tinycc-devel] Can the code comply to c89

2008-03-25 Thread grischka
From: Hanzac Chen: Hi, Because the some of the code can't be built in other compilers like MS Visual C++. I think the extensions of gcc should not be used especially. Here is the patch to make it compiled by VC. At least recent cl has long long now. Anyway, thanks for the patch. ---