I have this in the Gemfile:
gem \'mysql2\'
But when I run bundle update, I get this error message:
An error oc
I've ended up with a near-identical error message from attempting to build on a machine without gcc-c++
installed; mkmf
is failing to compile a simple c program because the compiler flat out isn't there.
If you're on CentOS, you want sudo yum install gcc-c++
. On Ubuntu, it's sudo apt-get install g++
. It's a little disappointing that old versions of ruby-devel
don't have a dependency on g++
.