---
title: "TCC : Tiny C Compiler"
url: https://daily.dev/posts/tcc-tiny-c-compiler-7ncwe58ms
source_url: https://bellard.org/tcc/
type: article
source: "Hacker News"
published: 2026-02-08T00:18:18.497Z
updated: 2026-02-08T06:08:24.417Z
tags: ["performance", "c", "compiler"]
reading_time: 2
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# TCC : Tiny C Compiler

**[Hacker News](https://daily.dev/sources/hn)** · 2 min read · 0 upvotes · 0 comments

## Summary

TCC (Tiny C Compiler) is an extremely small (~100KB) and fast C compiler that can compile, assemble, and link code up to 9 times faster than GCC. It supports direct C source execution without linking, includes a memory and bound checker, offers C script support with shebang notation, and provides libtcc for dynamic code generation. The compiler aims for full ISO C99 compliance and is distributed under the GNU LGPL license.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://bellard.org/tcc/>

## Similar posts on daily.dev

- [CCC vs GCC](https://daily.dev/posts/ccc-vs-gcc-9jedtbewr) · Hacker News · 0 upvotes · 0 comments
- [valdanylchuk/xcc700: mini C compiler for esp32](https://daily.dev/posts/valdanylchuk-xcc700-mini-c-compiler-for-esp32-plvqoj3q1) · Hacker News · 2 upvotes · 0 comments

---

Tags: [#performance](https://daily.dev/tags/performance), [#c](https://daily.dev/tags/c), [#compiler](https://daily.dev/tags/compiler)

[View this post on daily.dev](https://daily.dev/posts/tcc-tiny-c-compiler-7ncwe58ms)
