=head1 NAME tcc - Tiny C Compiler =head1 SYNOPSIS usage: tcc [options] [I I...] [B<-run> I I...] =head1 DESCRIPTION TCC options are a very much like gcc options. The main difference is that TCC can also execute directly the resulting program and give it runtime arguments. Here are some examples to understand the logic: =over 4 =item C> Compile F and execute it directly =item C> Compile a.c and execute it directly. arg1 is given as first argument to the C of a.c. =item C> Compile F and F, link them together and execute them. arg1 is given as first argument to the C of the resulting program. =item C> Compile F and F, link them and generate the executable F. =item C> link F and F together and generate the executable F. =item C> Compile F and generate object file F. =item C> Preprocess with C preprocess and assemble F and generate object file F. =item C> Assemble (but not preprocess) F and generate object file F. =item C> Compile F and F, link them together and generate the object file F. =back Scripting: TCC can be invoked from I, just as shell scripts. You just need to add C<#!/usr/local/bin/tcc -run> at the start of your C source: #!/usr/local/bin/tcc -run #include int main() { printf("Hello World\n"); return 0; } TCC can read C source code from I when B<-> is used in place of B. Example: echo 'main(){puts("hello");}' | tcc -run - =head1 OPTIONS =over 4 =item B<-c> Generate an object file. =item B<-o outfile> Put object file, executable, or dll into output file F. =item B<-run source [args...]> Compile file I and run it with the command line arguments I. In order to be able to give more than one argument to a script, several TCC options can be given I the B<-run> option, separated by spaces: tcc "-run -L/usr/X11R6/lib -lX11" ex4.c In a script, it gives the following header: #!/usr/local/bin/tcc -run -L/usr/X11R6/lib -lX11 =item B<-v> Display TCC version. =item B<-vv> Show included files. As sole argument, print search dirs. -vvv shows tries too. =item B<-bench> Display compilation statistics. =back Preprocessor options: =over 4 =item B<-Idir> Specify an additional include path. Include paths are searched in the order they are specified. System include paths are always searched after. The default system include paths are: F, F and F. (F is usually F or F). =item B<-Dsym[=val]> Define preprocessor symbol B to val. If val is not present, its value is B<1>. Function-like macros can also be defined: B<-DF(a)=a+1> =item B<-Usym> Undefine preprocessor symbol B. =item B<-E> Preprocess only, to stdout or file (with -o). =back Compilation flags: Note: each of the following options has a negative form beginning with B<-fno->. =over 4 =item B<-funsigned-char> Let the C type be unsigned. =item B<-fsigned-char> Let the C type be signed. =item B<-fno-common> Do not generate common symbols for uninitialized data. =item B<-fleading-underscore> Add a leading underscore at the beginning of each C symbol. =item B<-fms-extensions> Allow a MS C compiler extensions to the language. Currently this assumes a nested named structure declaration without an identifier behaves like an unnamed one. =item B<-fdollars-in-identifiers> Allow dollar signs in identifiers =back Warning options: =over 4 =item B<-w> Disable all warnings. =back Note: each of the following warning options has a negative form beginning with B<-Wno->. =over 4 =item B<-Wimplicit-function-declaration> Warn about implicit function declaration. =item B<-Wunsupported> Warn about unsupported GCC features that are ignored by TCC. =item B<-Wwrite-strings> Make string constants be of type C instead of C. =item B<-Werror> Abort compilation if warnings are issued. =item B<-Wall> Activate all warnings, except B<-Werror>, B<-Wunusupported> and B<-Wwrite-strings>. =back Linker options: =over 4 =item B<-Ldir> Specify an additional static library path for the B<-l> option. The default library paths are F, F and F. =item B<-lxxx> Link your program with dynamic library libxxx.so or static library libxxx.a. The library is searched in the paths specified by the B<-L> option and B variable. =item B<-Bdir> Set the path where the tcc internal libraries (and include files) can be found (default is F). =item B<-shared> Generate a shared library instead of an executable. =item B<-soname name> set name for shared library to be used at runtime =item B<-static> Generate a statically linked executable (default is a shared linked executable). =item B<-rdynamic> Export global symbols to the dynamic linker. It is useful when a library opened with C needs to access executable symbols. =item B<-r> Generate an object file combining all input files. =item B<-Wl,-rpath=path> Put custom search path for dynamic libraries into executable. =item B<-Wl,--enable-new-dtags> When putting a custom search path for dynamic libraries into the executable, create the new ELF dynamic tag DT_RUNPATH instead of the old legacy DT_RPATH. =item B<-Wl,--oformat=fmt> Use I as output format. The supported output formats are: =over 4 =item C ELF output format (default) =item C Binary image (only for executable output) =item C COFF output format (only for executable output for TMS320C67xx target) =back =item B<-Wl,-subsystem=console/gui/wince/...> Set type for PE (Windows) executables. =item B<-Wl,-[Ttext=# | section-alignment=# | file-alignment=# | image-base=# | stack=#]> Modify executable layout. =item B<-Wl,-Bsymbolic> Set DT_SYMBOLIC tag. =item B<-Wl,-(no-)whole-archive> Turn on/off linking of all objects in archives. =back Debugger options: =over 4 =item B<-g> Generate run time debug information so that you get clear run time error messages: C< test.c:68: in function 'test5()': dereferencing invalid pointer> instead of the laconic C. =item B<-b> Generate additional support code to check memory allocations and array/pointer bounds. B<-g> is implied. Note that the generated code is slower and bigger in this case. Note: B<-b> is only available on i386 when using libtcc for the moment. =item B<-bt N> Display N callers in stack traces. This is useful with B<-g> or B<-b>. =back Misc options: =over 4 =item B<-MD> Generate makefile fragment with dependencies. =item B<-MF depfile> Use F as output for -MD. =item B<-print-search-dirs> Print the configured installation directory and a list of library and include directories tcc will search. =item B<-dumpversion> Print version. =back Target specific options: =over 4 =item B<-mms-bitfields> Use an algorithm for bitfield alignment consistent with MSVC. Default is gcc's algorithm. =item B<-mfloat-abi (ARM only)> Select the float ABI. Possible values: C and C =item B<-mno-sse> Do not use sse registers on x86_64 =item B<-m32, -m64> Pass command line to the i386/x86_64 cross compiler. =back Note: GCC options B<-Ox>, B<-fx> and B<-mx> are ignored. =head1 ENVIRONMENT Environment variables that affect how tcc operates. =over 4 =item B =item B A colon-separated list of directories searched for include files, directories given with B<-I> are searched first. =item B A colon-separated list of directories searched for libraries for the B<-l> option, directories given with B<-L> are searched first. =back =head1 SEE ALSO cpp(1), gcc(1) =head1 AUTHOR Fabrice Bellard