cocoapods 설치 실패 해결 방법

1371 단어
1.pod를 설치할 때 다음과 같이 오류를 보고합니다.
Last login: Sun Oct 18 07:49:45 on console
appledeMac-Pro:~ apple$ sudo gem install cocoapods 
Password:
Building native extensions. This could take a while...
ERROR: Error installing cocoapods
ERROR: Failed to build gem native extension. 
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby -r ./siteconf20151018-1680-1ggny42.rb extconf.rbcreating Makefilemake "DESTDIR=" cleanmake "DESTDIR="compiling generator.clinking shared-object json/ext/generator.bundleclang: error: unknown argument: '-multiply_definedsuppress' [-Wunused-command-line-argument-hard-error-in-future]clang: note: this will be a hard error (cannot be downgraded to a warning) in the futuremake: *** [generator.bundle] Error 1make failed, exit code 2Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/json-1.8.3 for inspection.Results logged to /Library/Ruby/Gems/2.0.0/extensions/universal-darwin-13/2.0.0/json-1.8.3/gem_make.out

2. 여러 가지 방법을 시도해 보았지만 소용이 없었다. 다음에 Xcode가 5.1부터 컴파일러에 알 수 없는 매개 변수에 대한 전송을 error로 간주하도록 규정한 방법을 찾았다. 우리는 ARCHFLAGS를 사용하여 이 error를 Warning으로 강등시켜야 하기 때문에 마지막 설치 명령은 다음과 같다.
sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install cocoapods

3. 이어서 일련의 Successfully, 드디어 끝!

좋은 웹페이지 즐겨찾기