[Ruby on Rails 5] Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
毎度忘れていてつまずくエラー。
[markdown]
## 症状
`bundle install` で以下のようなエラーが表示される。
“`prettyprinted
Fetching mysql2 0.4.10
Installing mysql2 0.4.10 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
“`
## 対応
[xcode-select –install](https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html) を実行する。
“`prettyprinted
% xcode-select –install
“`
> * [macOS Sierra で mysql2 の bundle install に失敗する場合 – ハトネコエ Web がくしゅうちょう](http://nekonenene.hatenablog.com/entry/2016/10/31/061350)
[/markdown]