tags:

views:

229

answers:

1

When trying to create a Ruby Qt application I get this 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 using:

require 'Qt'

And am running the 64bit version of Novell OpenSUSE 11 with KDE4 installed.

+2  A: 

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

Scott Alan Miller