Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My side project, http://justmyneighbors.com, is a bit behind the technology curve. It's a rails 2.3.14 site running on mri 1.8.7 (ree in production) and postgresql.

When I run the test suite on a pristine lion install sooner or later it seg faults. I've been working on this for weeks and I'm running out of ideas.

My latest attempt:

  • reinstall snow leopard, apply all updates
  • upgrade to lion, apply all updates
  • install command_line_tools_for_xcode_june_2012
  • install homebrew with autoconf and automate per http://jfire.io/blog/2012/03/02/xcode-4-dot-3-homebrew-and-ruby/
  • install apple-gcc42
  • reinstall command_line_tools_for_xcode_june_2012
  • install rvm head and build 1.8.7
  • brew install postgresql, follow instructions for initializing and starting
  • get a copy of my database
  • git clone my code base
  • bundle
  • rake
  • seg fault

I think I understand the issues with building 1.8.7 on lion.

I'm also trying mri 1.9.2, but this requires some changes to the code base that I would rather not do at this time, as well as admitting defeat on getting 1.8.7 to work. I'm getting seg faults with 1.9.2 also, which makes me think the seg faults are coming from a gem.

Some gems with native extensions:

  • json 1.7.3
  • nokogiri 1.5.0
  • gherkin 2.11.0
  • pg 0.9.0
  • rdiscount 1.6.5

On previous attempts I tried to eliminate these as possible seg falters by:

  • following instructions to sort out nokogiri, libxml2 issues
  • use the ruby postgres adapter instead of pg
  • use kramdown instead of rdiscount

I'm seg faulting before I get to the cucumber suite, so I don't think the issue is gherkin.

I don't know what to do about the json gem.

I'm open to your suggestions. I'll publish what works. Thank you.

share|improve this question
you should include the error itself, so a context is given to the segfault – mpapis Jun 18 '12 at 22:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.