mirror of https://github.com/CrimsonTome/tldr.git
20 lines
651 B
Markdown
20 lines
651 B
Markdown
|
# 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}}`
|