patm
patm

Reputation: 1486

rvm and octopress cannot generate gists and pictures under mac

Since I installed octopress I can not run rake generate for posts that include pictures, code or other media. I get all kind of errors.

I'm using rvm's ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin12.0.0] under Mountain Lion. As a package manager I use MacPorts. Is there anything I need to install or that I can do to fix this? It's getting really annoying... :-(

Thanks in advance, right bellow you can see the log here. I wasn't able to post it on stackoverflow.

Thanks in advance for your time!

Upvotes: 0

Views: 93

Answers (1)

mpapis
mpapis

Reputation: 53178

It looks like you used clang for compiling ruby, this is not fully supported. There is at least one known bug with Fibers, and others problems might happen depending on clang version.

Ruby should be compiled with GNU GCC - you can find instructions how to get it by reading output of:

rvm requirements

There is also slightly chance this could be OpenSSL related, make sure you have only one version of it installed and used, sometimes reinstalling it with RVM could help:

rvm pkg install openssl
rvm reinstall 1.9.3

Upvotes: 1

Related Questions