Reputation: 31
After installing Mavericks my Sass stopped compiling with CodeKit. It points me to an error with Breakpoint. I've reinstalled the system and after installing SASS and Compass, the Breakpoint installation keeps giving me this error:
ERROR: Error installing breakpoint:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/include/ruby.h
Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/ffi-1.9.3 for inspection.
What can I do?
PS: I also did the gem update --system before installing Compass.
Thanks!
Upvotes: 2
Views: 302
Reputation: 5912
I had this error, and was able to fix it by running:
sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install breakpoint
Though apparently it can also by fixed by running:
export CFLAGS=-Qunused-arguments;
export CPPFLAGS=-Qunused-arguments;
sudo gem install breakpoint
Got this from: clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]
Upvotes: 2