Title: Installation: Tiny C Compiler
Writer: Maroik
Views: 341
Updated: [2025-10-01T09:51:27Z]
OS: Ubuntu 24.04.3 LTS
sudo apt update
sudo apt upgrade
sudo apt install git
sudo apt install build-essential
git clone https://repo.or.cz/tinycc.git
cd tinycc
./configure
make
sudo make install
tcc -v
echo 'int main() { return 42; }' > simple.c
./tcc simple.c -o simple
./simple
echo $? # 42