mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
clang: add Italian translation.
This commit is contained in:
parent
4f634a8f40
commit
10c9e5fca7
1 changed files with 19 additions and 0 deletions
19
pages.it/common/clang.md
Normal file
19
pages.it/common/clang.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# clang
|
||||
|
||||
> Compilatore per sorgenti C, C++ ed Objective-C. Può essere usato come alternativa a GCC.
|
||||
|
||||
- Compila un file sorgente in un binario eseguibile:
|
||||
|
||||
`clang {{sorgente_input.c}} -o {{eseguibile_output}}`
|
||||
|
||||
- Attiva l'output di tutti gli errori ed i warning:
|
||||
|
||||
`clang {{sorgente_input.c}} -Wall -o {{eseguibile_output}}`
|
||||
|
||||
- Includi librerie contenute in un percorso differente da quello del file di sorgente:
|
||||
|
||||
`clang {{sorgente_input.c}} -o {{eseguibile_output}} -I{{percorso_header}} -L{{percorso_librerie}} -l{{nome_libreria}}`
|
||||
|
||||
- Compila codice sorgente in IR LLVM (Intermediate Representation):
|
||||
|
||||
`clang -S -emit-llvm {{file.c}} -o {{file.ll}}`
|
Loading…
Add table
Reference in a new issue