Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TCA
- xcodecloud
- UI
- 개발
- combine
- composablearchitecture
- network
- Tuist
- ios18
- Navigation
- 모바일
- iOS 13.0+
- regex
- tuist #xcodecloud #ios #ci/cd #swiftlint #firebase
- iOS 개발자
- Firebase
- SWIFT
- swiftdata
- github
- ObjC
- IOS
- SWIFTUI
- uikit
- test
- navigationsplitview
- Git
- concurrency
- xcode
- Alamofire
- 정규표현식
Archives
- Today
- Total
iOS 개발 기록
M1 맥북 CocoaPods 에러 본문
728x90
터미널에서 CocoaPods으로 외부 라이브러리(나의 경우는 Alamofile)를 설치하려고 하니 이와 같은 에러가 떴다.
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.html
[IMPORTANT]
Don't forget to include the Crash Report log file under
DiagnosticReports directory in bug reports.
해결방법
구글링으로 찾아보니 맥북이 ARM 기반의 애플실리콘 M1칩으로 이전하면서 아키텍쳐 차이에서 나오는 문제라고 한다.
때문에 ARM이 아닌 X86 기반으로 Ruby FFI를 다시 설치하고, pod install도 X86 기반으로 해야 한다고 한다.
% sudo arch -x86_64 gem install ffi
% arch -x86_64 pod install
다음의 명령어를 실행하면 문제 없이 설치되고 .xcworkspace 파일이 생성되는 것을 확인할 수 있다.
'iOS > 에러' 카테고리의 다른 글
[SwiftData] iOS18이상에서 ModelContext.reset 호출로 인해 나타나는 런타임 오류 (TCA+SwiftData) (4) | 2024.10.02 |
---|---|
[Error] SDK is not supported by the compiler (0) | 2023.04.07 |
[__Error] Domain=NSURLErrorDomain Code=-999__ (1) | 2023.02.21 |
[Swift]네트워크 연결 시 Code=-1200 "SSL 오류가 발생했기 때문에 서버에 안전하게 연결할 수 없습니다. " (0) | 2022.03.28 |