TCC: Difference between revisions

From Rosetta Code
Content added Content deleted
(Added implementation and stub templates)
 
(flesh out)
Line 1: Line 1:
{{stub}}{{implementation|C}}
{{implementation|C}}{{stub}}
TCC — Tiny C Compiler — is a compiler of [[C]] designed to be used in embedded environments. It only generates code for the x86 and x86-64 architectures.

There is a [[Tcl]] extension that embeds TCC to enable putting C inside Tcl scripts. (See [http://wiki.tcl.tk/20123 the Tcler's Wiki] for more details.)

==Links==
* [http://www.tinycc.org/ Home page] (redirects to http://bellard.org/tcc/)
* [http://www.landley.net/code/tinycc/ Another project home page] (things are a bit complicated!)

Revision as of 06:51, 15 September 2013

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
TCC is an implementation of C. Other implementations of C.

TCC — Tiny C Compiler — is a compiler of C designed to be used in embedded environments. It only generates code for the x86 and x86-64 architectures.

There is a Tcl extension that embeds TCC to enable putting C inside Tcl scripts. (See the Tcler's Wiki for more details.)

Links