mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
782 B
782 B
lipo
Mach-O 유니버설 바이너리를 처리합니다. 더 많은 정보: https://keith.github.io/xcode-man-pages/lipo.1.html.
- 두 개의 단일 아키텍처 파일에서 유니버설 파일 생성:
lipo {{경로/대상/바이너리_파일.x86_64}} {{경로/대상/바이너리_파일.arm64e}} -create -output {{경로/대상/바이너리_파일}}
- 유니버설 파일에 포함된 모든 아키텍처 나열:
lipo {{경로/대상/바이너리_파일}} -archs
- 유니버설 파일에 대한 자세한 정보 표시:
lipo {{경로/대상/바이너리_파일}} -detailed_info
- 유니버설 파일에서 단일 아키텍처 파일 추출:
lipo {{경로/대상/바이너리_파일}} -thin {{arm64e}} -output {{경로/대상/바이너리_파일.arm64e}}