Actions
Bug #12457
closedRuby 2.2.5 segfaults as soon as I include wxRuby module
Bug #12457: Ruby 2.2.5 segfaults as soon as I include wxRuby module
Description
I saw on GitHub that wxW now says it supports 2.2. wx 2.8 installed from packages on Linux Mint 17.3 (derived from Ubuntu 14.04), but the mere inclusion of the module causes this segfault. Ruby 2.2.5 compiled from source.
require 'wx' class GUI include Singleton include 'Wx' def start end def shut_down end end *** LOCAL GEMS *** bigdecimal (1.2.6) geometry (6.5) io-console (0.4.3) json (1.8.1) minitest (5.4.3) power_assert (0.2.2) psych (2.0.8) rake (10.4.2) rdoc (4.2.0) stl (0.2) test-unit (3.0.8) wxruby (2.0.0 x86_64-linux) /usr/local/bin/ruby -e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) /home/din/Projects/UAVA/Code/uava1/unique_aerial_vehicle_art.rb /usr/local/lib/ruby/gems/2.2.0/gems/wxruby-2.0.0-x86_64-linux/lib/wxruby2.so: [BUG] unknown type 0x22 (0x11 given) (snip) Files
Updated by nobu (Nobuyoshi Nakada) over 9 years ago
- File bug-12457.log bug-12457.log added
- Description updated (diff)
- Status changed from Open to Third Party's Issue
[BUG] unknown type 0x22 (0x11 given)
Typically, this is an error occurs when an extension library build for 1.8 is loaded.
Actions