diff options
| author | bellard <bellard> | 2002-03-03 22:44:31 +0000 |
|---|---|---|
| committer | bellard <bellard> | 2002-03-03 22:44:31 +0000 |
| commit | 6933ac641f46c8bbe1f4c9f44382a04f1b956ba2 (patch) | |
| tree | 5040ba5ec850f5ec40ae7810fec5bdf476982d48 | |
| parent | 77db7175cad1dc04d6a4308ee2427c755437acfc (diff) | |
| download | tinycc-6933ac641f46c8bbe1f4c9f44382a04f1b956ba2.tar.gz tinycc-6933ac641f46c8bbe1f4c9f44382a04f1b956ba2.tar.bz2 | |
update
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | README | 4 |
2 files changed, 8 insertions, 6 deletions
@@ -11,7 +11,7 @@ LIBS_P= CFLAGS+=-m386 -malign-functions=0 DISAS=objdump -d INSTALL=install -VERSION=0.9.4 +VERSION=0.9.5 all: tcc @@ -92,7 +92,8 @@ install: tcc clean: rm -f *~ *.o tcc tcc1 tcct tcc_g tcctest.ref *.bin *.i ex2 \ - core gmon.out test.out test.ref a.out tcc_p + core gmon.out test.out test.ref a.out tcc_p \ + *.exe iltcc iltcc_g # IL TCC @@ -131,9 +132,12 @@ tar: rm -rf /tmp/$(FILE) cp -r ../tcc /tmp/$(FILE) ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz \ - $(FILE)/Makefile $(FILE)/README $(FILE)/TODO $(FILE)/COPYING \ + $(FILE)/Makefile $(FILE)/Makefile.uClibc \ + $(FILE)/README $(FILE)/TODO $(FILE)/COPYING \ $(FILE)/Changelog $(FILE)/tcc-doc.html \ $(FILE)/tcc.c $(FILE)/i386-gen.c $(FILE)/bcheck.c \ + $(FILE)/il-opcodes.h $(FILE)/il-gen.c \ + $(FILE)/elf.h $(FILE)/stab.h $(FILE)/stab.def \ $(FILE)/stddef.h $(FILE)/stdarg.h $(FILE)/stdbool.h $(FILE)/float.h \ $(FILE)/tcclib.h \ $(FILE)/ex*.c $(FILE)/tcctest.c $(FILE)/boundtest.c ) @@ -8,7 +8,7 @@ Features: rescue disks. - FAST! tcc generates optimized x86 code. No byte code - overhead. Compiles, assemble and link about 7 times faster than 'gcc + overhead. Compile, assemble and link about 7 times faster than 'gcc -O0'. - UNLIMITED! Any C dynamic library can be used directly. TCC is @@ -40,8 +40,6 @@ Type 'make install' to compile and install tcc in /usr/local/bin and We assume here that you know ANSI C. Look at the example ex1.c to know what the programs look like. -The main limitation of tcc is that you cannot use floats. - The include file <tcclib.h> can be used if you want a small basic libc include support (especially useful for floppy disks). Of course, you can also use standard headers, although they are slower to compile. |
