Im trying to install an open source rails 3.2.21 application that uses the mysql2
gem, but when i try and run the bundle
commant I get the following error:
Fetching: mysql2-0.3.18.gem (100%)Building native extensions. This could take a while...pERROR: Error installing mysql2: ERROR: Failed to build gem native extension. /Users/my_username/.rvm/rubies/ruby-2.1.2/bin/ruby -r ./siteconf20150614-72129-orqsb7.rb extconf.rbchecking for ruby/thread.h... yeschecking for rb_thread_call_without_gvl() in ruby/thread.h... yeschecking for rb_thread_blocking_region()... yeschecking for rb_wait_for_single_fd()... yeschecking for rb_hash_dup()... yeschecking for rb_intern3()... yes-----Using mysql_config at /usr/local/bin/mysql_config-----checking for mysql.h... yeschecking for errmsg.h... yeschecking for mysqld_error.h... yes-----Don't know how to set rpath on your system, if MySQL libraries are not in path mysql2 may not load----------Setting libpath to /usr/local/Cellar/mysql/5.6.25/lib-----creating Makefilemake "DESTDIR=" cleanmake "DESTDIR="compiling client.ccompiling infile.ccompiling mysql2_ext.ccompiling result.clinking shared-object mysql2/mysql2.bundleld: warning: directory not found for option '-L/Users/travis/.sm/pkg/active/lib'ld: library not found for -lsslclang: error: linker command failed with exit code 1 (use -v to see invocation)make: *** [mysql2.bundle] Error 1make failed, exit code 2Gem files will remain installed in /Users/my_username/.rvm/rubies/ruby-2.1.2/lib/ruby/gems/2.1.0/gems/mysql2-0.3.18 for inspection.Results logged to /Users/my_username/.rvm/rubies/ruby-2.1.2/lib/ruby/gems/2.1.0/extensions/x86
I tried uninstalling every version of mysql
I installed via homebrew and reinstalling them, like so:
brew uninstall --force mysql && brew install mysql
Then running:
sudo gem install mysql2
As suggested by a number of similar questions asked on here, but it still results in the same error as above.
Please could someone offer guidance on how to get this up and running?