[Xcode] The linked library ‘파일명’ is missing one more architectures required by this target: arm64.
Xcode 에서 아래 오류 메시지가 발생하는 경우
The linked library ‘파일명’ is missing one more architectures required by this target: arm64.
ex) The linked library ‘libraryName.a’ is missing one more architectures required by this target: arm64.
해결방안
(1) 해당 라이브러리가 (ex : libraryName.a) 필수적이지 않은 경우, General – Frameworks, Libraries, and Embedded Content 에서 해당 라이브러리를 제거하는 방법도 있다.
(2) 해당 라이브러리가 필수적이라면, Build Settings 에서 Architectures 에서 arm64 항목을 제거한다.
참고사이트 : https://yenos.tistory.com/entry/tipxcode-511-missing-required-architecture-arm64-error