1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

llvm-as: add Spanish translation (#15305)

This commit is contained in:
Igor Támara 2024-12-28 01:15:21 -05:00 committed by GitHub
parent 0cec77c4f3
commit bbd57f9958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,16 @@
# llvm-as
> Ir de Representación intermedia LLVM (`.ll`) a Bitcode de Ensamblador (`.bc`).
> Más información: <https://llvm.org/docs/CommandGuide/llvm-as.html>.
- Ensambla un archivo IR:
`llvm-as -o {{ruta/a/ensamblado.bc}} {{ruta/a/fuente.ll}}`
- Ensambla un archivo IR e incluye un hash de módulo en el archivo bitcode producido:
`llvm-as --module-hash -o {{ruta/a/ensamblado.bc}} {{ruta/a/fuente.ll}}`
- Lee un archivo IR de `stdin` y lo ensambla:
`cat {{ruta/a/fuente.ll}} | llvm-as -o {{ruta/a/ensamblado.bc}}`