Skip to main content

TinyCC compiler bundle for windows

Project description

TinyCC (or tcc) is a small, fast C compiler capable of producing DLLs that can be loaded via ctypes. This version includes compilers for 32-bit and 64-bit Windows.

Compiler version: 0.9.26 (amd64) 2013-02-16

Installation of the compiler and the python interface is simply:

pip install tinycc

Full documentation for the compiler is available at http://bellard.org/tcc. Source and binaries are available from https://savannah.nongnu.org/projects/tinycc/.

TCC is the full path to the tcc.exe executable. Note that the executable path may contain spaces so it must be wrapped in quotes when used as part of an os.system command.

TCC_VERSION is the compiler version.

Usage example:

from tinycc import compile
dll_path = compile("hello.c")

This creates “hello.dll” in the same directory as “hello.c”. Use compile(source, target) to control the path to the dll.

For more flexibility, you can call the compiler directly:

import os
import subprocess
from tinycc import TCC

source = "hello.c"
dll_path = os.path.splitext(source)[0] + ".dll"  # replace .c with .dll
command = [TCC, "-shared", "-rdynamic", "-Wall", source, "-o", dll_path]
try:
    # need shell=True on windows to keep console box from popping up
    shell = os.name == "nt"
    subprocess.check_output(command, shell=shell, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as exc:
    raise RuntimeError("compile failed.\n%s\n%s"%(command_str, exc.output))
if not os.path.exists(dll_path):
    raise RuntimeError("compile failed.  File is in %r"%source)

Use data_files to gather the data files required for bundling tinycc in a py2exe package. This places the compiler in the tinycc-data directory beside the library.zip generated by py2exe. The following should appear in the setup.py for the py2exe build:

import tinycc

data_files = []
...
data_files.extend(tinycc.data_files())
...
setup(
    ...
    data_files = data_files,
    ...
    )

Note: if you have put tcc.exe somewhere unusual (i.e., not in the tinycc package and not in tinycc-data next to the py2exe generated library or exe), then you can set the environment variable TCC_ROOT to the directory containing tcc.exe.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tinycc-1.0.2.tar.gz (487.2 kB view details)

Uploaded Source

File details

Details for the file tinycc-1.0.2.tar.gz.

File metadata

  • Download URL: tinycc-1.0.2.tar.gz
  • Upload date:
  • Size: 487.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tinycc-1.0.2.tar.gz
Algorithm Hash digest
SHA256 77593146baf4817c6f669f75404243960014729e77be6ec368448a3edcf1b99b
MD5 9375956538dad02b73471e5a8dc47773
BLAKE2b-256 64b844504944a8b0cc3480792421945ce727cef8a72e931d021001653f0d3ed0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page