본문 바로가기

IT/iOs

프레임워크 지원하는 아키텍처 확인하는법

지원하는 아키텍처 확인하는법

Check supported architectures of framework

 

 

터미널을 엽니다

Check below command in Terminal

 

해당 위치로 이동하여 아래 명령어로 확인합니다.


lipo -info yourlib.a

 

Output :
Architectures in the fat file: yourlib.a are: i386 x86_64 armv7 arm64

 

.framework인 경우

In case Framework.framework

 

해당 위치로 이동하여

프레임워크 폴어 안으로까지 이동합니다.

Go to inside framework like below

 

cd /Your_Path_/라이브러리이름.framework

 

그리고 아래 명령어를 사용합니다.

then run command


lipo -info CocoaLumberjack

 

Output : 라이브러리이름 are: armv7 arm64