1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 04:55:32 +02:00

llvm-config: add Spanish translation (#15308)

This commit is contained in:
Igor Támara 2024-12-28 01:14:01 -05:00 committed by GitHub
parent b5204ce14d
commit 751bfae524
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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`