react-native설치를 위해 cocoapods설치 하다가 tool이 없다는 에러가 났다.
$ sudo gem install cocoapods
Last login: Sun Oct 31 17:25:58 on ttys001
yjkim@yjkimui-MacBookPro ~ % sudo gem install cocoapods
Password:
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb:229: warning: Insecure world writable dir /opt in PATH, mode 040777
Building native extensions. This could take a while...
ERROR: Error installing cocoapods:
ERROR: Failed to build gem native extension.
current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.4/ext/ffi_c
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20211031-50634-ysvu1g.rb extconf.rb
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb:229: warning: Insecure world writable dir /opt in PATH, mode 040777
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/$(RUBY_BASE_NAME)
--with-ffi_c-dir
--without-ffi_c-dir
--with-ffi_c-include
--without-ffi_c-include=${ffi_c-dir}/include
--with-ffi_c-lib
--without-ffi_c-lib=${ffi_c-dir}/lib
--enable-system-libffi
--disable-system-libffi
--with-libffi-config
--without-libffi-config
--with-pkg-config
--without-pkg-config
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:467:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:546:in `block in try_link0'
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/tmpdir.rb:93:in `mktmpdir'
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:543:in `try_link0'
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:570:in `try_link'
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:672:in `try_ldflags'
from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/mkmf.rb:1832:in `pkg_config'
from extconf.rb:9:in `system_libffi_usable?'
from extconf.rb:42:in `<main>'
To see why this extension failed to compile, please check the mkmf.log which can be found here:
/Library/Ruby/Gems/2.6.0/extensions/universal-darwin-20/2.6.0/ffi-1.15.4/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.4 for inspection.
Results logged to /Library/Ruby/Gems/2.6.0/extensions/universal-darwin-20/2.6.0/ffi-1.15.4/gem_make.out
yjkim@yjkimui-MacBookPro ~ %
처음에 아래의 포스트를 참고하여 brew로 재설치했다. 성공했지만.. 똑같이 gem으로 설치시에는 동일한 에러가 나서 찝찝했다..
http://gyutaehan.me/macesococoapodsseolchihegyul/
좀더 구글링 하다가 다음 포스트를 찾았다. 에러로그에 나온 모듈들을 설치하면 되는데, 이럴 경우 또 어떤 에러가 나올지 모른다.
Ruby를 최신 버전으로 업데이트 했다.
https://lovapi.tistory.com/177
$ curl -L https://get.rvm.io | bash -s stable
$ source /Users/yjkim/.rvm/scripts/rvm
$ rvm install ruby
$ sudo gem install cocoapods
install 성공!!!
'기술 > 오류 해결 기록' 카테고리의 다른 글
[Spring boot] warning: unknown enum constant When.MAYBE (0) | 2023.10.13 |
---|---|
[Spring boot] Generating equals/hashCode implementation but without a call to superclass (0) | 2023.09.26 |
[Android Build failed] Keystore file ... not found for signing config 'debug'. (MAC) (0) | 2023.09.07 |
[JAVA] jar 파일 CMD로 실행시 한글 깨짐 현상 (0) | 2021.04.02 |
[JAVA] @Transactional 캐싱 문제.. (0) | 2020.11.18 |