Trying to install ruby 2.1.2 with rbenv on OSX BUILD FAILED
macos, rbenv, ruby
Solution
I was able to build it using:
CONFIGURE_OPTS="--disable-dtrace" rbenv install 2.1.2
Basically that's what is suggested in the question's comment by wicz.
The solution by KurtPreston did not work for me. Also using OS X 10.9.
Problem
So, as the title suggests, I'm trying to install ruby 2.1.2, altough I've tried to install other versions as well, and I'm getting the same errors. I'm running OSX 10.9.2. I've tried: Installing a fresh gcc compiler, via `brew install gcc47` Installing updated OSX command line tools Uninstalling rbenv and trying again Restarting the machine Here is the sum of what I'm getting: ``` rbenv install 2.1.2 Downloading ruby-2.1.2.tar.gz... -> http://dqw8nmjcqpjn7.cloudfront.net/f22a6447811a81f3c808d1c2a5ce3b5f5f0955c68c9a749182feb4 25589e6635 Installing ruby-2.1.2... BUILD FAILED Inspect or clean up the working tree at /var/folders/6c/h_82199n12515_hd3rcp2x5w0000gn/T/ruby-build.20140528115901.38728 Results logged to /var/folders/6c/h_82199n12515_hd3rcp2x5w0000gn/T/ruby-build.20140528115901.38728.log Last 10 log lines: gcc version 4.2.1 (Apple Inc. build 5666) (dot 3) compiling miniinit.c compiling miniprelude.c translating probes probes.d compiling bignum.c compiling class.c dtrace: failed to compile script probes.d: Preprocessor not found make: *** [probes.h] Error 1 make: *** Waiting for unfinished jobs.... compiling compar.c ``` Thoughts? Gist of verbose output