Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site











SourceForge.net Logo

Tcc

 

Windows implementation

 

TCC original project does not support MSVC compiler so that the Tcc package implementation uses a .DLL file in Windows. A copy of this file (libtcc.dll) is included in Bazaar/Tcc package

 

To compile this .DLL file (libtcc.dll) is as simple as running the file GetDLL.bat in lib folder. MinGW bin folder should have to be included in PATH

 

GetDLL.bat file contains this:

 

gcc -O3 -shared -Wall -Wl,--export-all-symbols -mpreferred-stack-boundary=2 -march=i386 -falign-functions=0 -fno-strict-aliasing -DTCC_TARGET_PE -DLIBTCC -o libtcc.dll tcc.c

 

 

POSIX implementation

 

To get POSIX ELF executables it is necessary to install tcc.

 

To do it it has to be entered from a terminal window in lib folder:

 

make

make install

Do you want to contribute?