Le Thu, Jan 11, 2007 at 02:09:37PM +0100, Leonard Ritter écrivait/wrote: > hi everyone, > > i'm using tcc to provide on-the-fly compilation of dsp code for an > integrated music sequencing library that i'm writing > ( http://trac.zeitherrschaft.org/zzub/ ). songs saved contain c code > which is compiled without any connection to libc or local platform > headers, and which is supposed to be translated on the fly and loaded > before the song is being played. > > i noticed that tcc does not support ppc as compile target. is such a > feature planned? > > if no, it is possible that i will have to resort to a different > compiler. requirements are that it is small/tiny (especially in source > code volume), easy to integrate into my own codebase, provides a library > interface and is able to compile code without any additional libc > headers and libraries required.
If you want to generate quickly binary code on 32bits PowerPC, you might consider GNU lightning. (which generate quickly naive machine code without optimisations, but don't work on 64bits PowerPC) If you want to generate PowerPC code which is optimised, you might consider LLVM (which probably have JIT ability on PowerPC) You might also have a look into libjit and Parrotcode http://www.gnu.org/software/lightning/lightning.html http://savannah.gnu.org/projects/lightning/ http://llvm.org/ http://www.southern-storm.com.au/libjit.html http://www.parrotcode.org/ -- Basile STARYNKEVITCH http://starynkevitch.net/Basile/ email: basile<at>starynkevitch<dot>net mobile: +33 6 8501 2359 8, rue de la Faïencerie, 92340 Bourg La Reine, France *** opinions {are only mines, sont seulement les miennes} *** _______________________________________________ Tinycc-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/tinycc-devel
