[SOLVED] ruby 1.9.1 mingw32 wxruby => undefined reference to ‘wxGraphicsRenderer::CreateBitmap’
January 31st, 2010
Hi to all,
i’ve compiled wxWidgets with this options:
1 2 3 4 5 6 7 | ./configure --enable-optimise --enable-stl --enable-unicode --disable-threads --enable-static --with-opengl --disable-shared --enable-monolithic --disable-debug --with-libjpeg=builtin --with-libpng=builtin --with-zlib=builtin --enable-graphics_ctx --enable-mediactrl --enable-unicode --with-libtiff=builtin --with-expat=builtin --enable-gui -enable-xrc --enable-mdi --enable-gif --enable-pcx --enable-iff --enable-png --enable-xpm |
and also compiled StyledTextCtrl .
My system is :
Windows xp sp3
ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32]
gcc.exe 3.4.5
swig.exe 1.3.38
rake 0.8.7
when compiled wxruby (from svn), i’ve recived this error:
1 2 3 4 5 6 7 8 | c:\msys\MinGW\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: warning: auto-importing has been activated without --enable-auto-import specified on the command line. This should work unless it involves constant data structures referencing symbols from auto-imported DLLs. C:\msys\1.0\src\wxWidgets-2.8.10/lib/libwx_mswu-2.8.a(monolib_graphcmn.o):graphcmn.cpp:(.text+0x3374): undefined reference to `wxGraphicsRenderer::CreateBitmap(wxBitmapconst&)' collect2: ld returned 1 exit status rake aborted! Command failed with status (1): [g++ -shared -L.obj/AboutDialogInfo.o o...] |
[SOLVED]
IF i compile wxWidgests 2.8.10 i’ve this error:
1 2 3 | C:\msys\1.0\src\wxWidgets-2.8.10/lib/libwx_mswu-2.8.a(monolib_graphcmn.o):graphcmn.cpp:(.text+0x3374): undefined reference to `wxGraphicsRenderer::CreateBitmap(wxBitmap const&)' |
If i compile with wxWidgets 2.8.9 WORK !!!
this is the gem :
svn version: 2107
http://www.waydotnet.com/ruby/wxruby-ruby19-2.0.1.svn-x86-mingw32.gem
Only problem when install without –no-rdoc
reference:
http://www.ruby-forum.com/topic/202491
64bit:
1 | ./configure --enable-optimise --enable-stl --enable-unicode --enable-threads --enable-static --with-opengl --disable-shared --enable-monolithic --disable-debug --with-libjpeg=builtin --with-libpng=builtin --with-zlib=builtin --enable-graphics_ctx --enable-mediactrl --enable-unicode --with-libtiff=builtin --with-expat=builtin --enable-gui -enable-xrc --enable-mdi --enable-gif --enable-pcx --enable-iff --enable-png --enable-xpm --with-odbc=sys CFLAGS=-fPIC CXXFLAGS=-fPIC LDFLAGS=-fPIC |

