Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Contributions to C::B => Topic started by: killerbot on November 21, 2006, 01:34:56 pm

Title: Tiny C Compiler
Post by: killerbot on November 21, 2006, 01:34:56 pm
As of today CB, has some first build-in support for the "Tiny C Compiler" (tcc). I have tried it out a little bit on the Windows platform. The majority of the settings have been added (well does that look straight forward to me).

I would like to ask all TCC users to help me out, and improve/add , fix problems.
And also to help me out on getting the right thing for tcc on linux.

You can put your feedback in this thread or PM me.

many thanks
Title: Re: Tiny C Compiler
Post by: manciuleas on November 21, 2006, 02:42:46 pm
Rev 3252 does not compile because of this.
You need to modify #include "compilertcc.h" in compilergcc.cpp to #include "compilerTcc.h" because of the new files compilerTcc.h and compilerTcc.cpp
(I'm compiling on Linux).

Title: Re: Tiny C Compiler
Post by: killerbot on November 21, 2006, 02:59:40 pm
Rev 3252 does not compile because of this.
You need to modify #include "compilertcc.h" in compilergcc.cpp to #include "compilerTcc.h" because of the new files compilerTcc.h and compilerTcc.cpp
(I'm compiling on Linux).



fixed
Title: Re: Tiny C Compiler
Post by: manciuleas on November 21, 2006, 03:06:50 pm
Thx!