반응형
How to check target os version of dylib library file on Mac OS
(Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법)
빌드한 라이브러리의 타겟 OS 버전을 확인이 필요할 때가 있다.
그럴 때는 otool 명령어에 간단한 옵션을 줘서 확인할 수 있다.
터미널을 열고 아래와 같이 커맨드를 내려보자!
(Sometimes it is necessary to check the target OS version of the built library.
In such a case, you can check by giving a simple option to the otool command.
Open a terminal and run the command below!)
otool -lv lib~~.dylib > output.txt
output.txt를 열어서 아래 내용을 검색하면 타겟 OS버전을 볼 수 있다.
(You can see the target OS version by opening output.txt and searching the contents below.)
cmd LC_VERSION_MIN_MACOSX
cmdsize ~~
version 11.2
sdk ~~
라이브러리의 mac os 타겟 버전 설정 방법
(How to set the mac os target version of the library)
반응형
'Development Solutions > iOS & OS X' 카테고리의 다른 글
[ios][flutter] Warning: CocoaPods not installed. Skipping pod install (0) | 2023.01.14 |
---|---|
맥북에서 Homebrew 설치하는 방법 (0) | 2023.01.14 |
How to set Mac OS version when building library (라이브러리 빌드할 때 Mac OS버전 설정 방법) (0) | 2022.10.04 |
How to Reset Mac OS X Permissions (Mac OS X 권한 초기화 방법) (0) | 2022.10.04 |
[Apple OS X / iOS] Adding permission (info.plist, entitlements.plist) 권한 추가하기 (0) | 2022.09.29 |