3

Trying to create a QtRuby application, I get the following error:

/usr/lib64/ruby/site_ruby/1.8/Qt/qtruby4.rb:2144: [BUG] Segmentation fault
ruby 1.8.6 (2008-03-03) [x86_64-linux]

I am running a 64-bit version of Novell OpenSUSE 11 with DKE4 and Qt

Arlen
  • 6,641
  • 4
  • 29
  • 61

1 Answers1

2

The issue is with: require 'Qt'

Because of the 64bit libraries, instead you need to use:

require 'korundum4'

Reference: http://www.sheepguardingllama.com/?p=2661