1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/tcc.md
코드싸이 0a970f1797
tldr: update Korean translation, common/t*: add Korean translation (#14645)
* common/t*: add Korean translation

* tldr: update Korean translation

* Update tcc.md

* Update pages.ko/common/tcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update pages.ko/common/tar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tarsnap.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tarsnap.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/transfersh.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/tuir.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/twine.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/twine.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-09 13:29:00 +09:00

16 lines
529 B
Markdown

# tcc
> A tiny C compiler that can run C source files as scripts and otherwise has command-line options similar to `gcc`.
> More information: <https://bellard.org/tcc/tcc-doc.html>.
- Compile and link 2 source files to generate an executable:
`tcc -o {{executable_name}} {{path/to/file1.c}} {{path/to/file2.c}}`
- Directly run an input file like a script and pass arguments to it:
`tcc -run {{path/to/source_file.c}} {{arguments}}`
- Interpret C source files with a shebang inside the file:
`#!{{/full/path/to/tcc}} -run`