From 59e18aee0e509a3ca75dbe6f909e18c1d17893d1 Mon Sep 17 00:00:00 2001 From: mingodad Date: Fri, 11 Jan 2013 00:04:38 +0000 Subject: Added what I call virtual io to tinycc this way we can make a monolitic executable or library that contains all needed to compile programs, truly tinycc portable. Tested under linux exec the "mk-it" shell script and you'll end up with a portable tinycc executable that doesn't depend on anything else. --- mk-it | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 mk-it (limited to 'mk-it') diff --git a/mk-it b/mk-it new file mode 100755 index 0000000..f73d3e6 --- /dev/null +++ b/mk-it @@ -0,0 +1,8 @@ +rm *.a +rm *.o +make +./mk-attachments.sh +rm tcc.o +make CONFIG_USE_ATTACHMENTS=1 +strip tcc + -- cgit v1.3.1