mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 16:35:53 +02:00
llvm-config: add Spanish translation (#15308)
This commit is contained in:
parent
b5204ce14d
commit
751bfae524
1 changed files with 17 additions and 0 deletions
17
pages.es/common/llvm-config.md
Normal file
17
pages.es/common/llvm-config.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# llvm-config
|
||||||
|
|
||||||
|
> Obtiene variada información de configuración necesaria para compilar programas que utilizan LLVM.
|
||||||
|
> Típicamente llamado desde sistemas de construcción, como Makefiles o scripts de configuración.
|
||||||
|
> Más información: <https://llvm.org/docs/CommandGuide/llvm-config.html>.
|
||||||
|
|
||||||
|
- Compila y vincula un programa basado en LLVM:
|
||||||
|
|
||||||
|
`clang++ $(llvm-config --cxxflags --ldflags --libs) --output {{ruta/al/resultado_ejecutable}} {{ruta/a/source.cc}}`
|
||||||
|
|
||||||
|
- Imprime el `PREFIJO` de su instalación LLVM:
|
||||||
|
|
||||||
|
`llvm-config --prefix`
|
||||||
|
|
||||||
|
- Imprime todos los objetivos soportados por su LLVM instalado:
|
||||||
|
|
||||||
|
`llvm-config --targets-built`
|
Loading…
Add table
Reference in a new issue