common/l*: add Korean translation (#14665)

This commit is contained in:
코드싸이
2024-11-07 09:27:55 +09:00
committed by GitHub
parent feb91d75ea
commit ef281bb658
103 changed files with 2279 additions and 0 deletions

20
pages.ko/common/lli.md Normal file
View File

@@ -0,0 +1,20 @@
# lli
> LLVM 비트코드에서 프로그램을 직접 실행.
> 더 많은 정보: <https://www.llvm.org/docs/CommandGuide/lli.html>.
- 비트코드 또는 IR 파일 실행:
`lli {{경로/대상/파일.ll}}`
- 명령줄 인수와 함께 실행:
`lli {{경로/대상/파일.ll}} {{인수1 인수2 ...}}`
- 모든 최적화 활성화:
`lli -O3 {{경로/대상/파일.ll}}`
- 링크 전에 동적 라이브러리 로드:
`lli --dlopen={{경로/대상/라이브러리.dll}} {{경로/대상/파일.ll}}`