Author: wmb Date: 2009-01-23 21:00:12 +0100 (Fri, 23 Jan 2009) New Revision: 1078
Added: cpu/x86/Linux/make_with_tcc Log: Added a script so you can use TCC to build the wrapper.
Added: cpu/x86/Linux/make_with_tcc =================================================================== --- cpu/x86/Linux/make_with_tcc (rev 0) +++ cpu/x86/Linux/make_with_tcc 2009-01-23 20:00:12 UTC (rev 1078) @@ -0,0 +1,9 @@ +#!/bin/sh +# This script demonstrates the ability to build the wrapper with tcc +# (Tiny C Compiler) + +BP=../../.. +W=${BP}/forth/wrapper +Z=${W}/zip + +tcc -DTARGET_X86 -o forth ${W}/wrapper.c ${W}/logger.c ${Z}/zipmem.c ${Z}/deflate.c ${Z}/trees.c ${Z}/bits.c ${Z}/util.c ${Z}/inflate.c