
tcc
List of commands for tcc:
-
tcc:tldr:46840 tcc: Compile and link 2 source files to generate an executable.$ tcc -o ${executable_name} ${filename1-c} ${filename2-c}try on your machineexplain this command
-
tcc:tldr:e1036 tcc: Directly run an input file like a script and pass arguments to it.$ tcc -run ${path-to-source_file-c} ${arguments}try on your machineexplain this command
-
tcc:tldr:ee1f9 tcc: Interpret C source files with a shebang inside the file.$ #!/full/path/to/tcc -runtry on your machineexplain this command