Displaying 3 results from an estimated 3 matches for "wxmsw241d".
2003 Aug 28
2
Problem Running Samples (Mingw, Ruby 1.8.0)
I believe I have followed Gour''s instructions to the letter for
compiling wxwindows, ruby and wxruby.
Indeed all of the compilation stages have worked flawlessly, however
when I try to ruby any of the samples I get an error dialog
"This application has failed to start because wxmsw241d.dll was not
found ...."
Looking in the c:/mingw/lib directory
robertm@PC126 /mingw/lib
$ ls -la *wx*
-rwxr-xr-x 3 robertm Administ 39230756 Aug 28 12:06
libwx_mswd-2.4.dll
-rwxr-xr-x 3 robertm Administ 39230756 Aug 28 12:06
libwx_mswd-2.4.dll.0
-rwxr-xr-x 3 robertm Administ 392...
2003 Aug 22
1
README.mingw32
...he source directory)
* ruby extconf.rb (to create Makefile)
The present extconf.rb contains line with assignment to $LIBS variable
(under /mingw32/ section) to include wxmsw241.dll library during the linking
phase.
However, if you built wxWindows with "-enable-debug" and therefore have
wxmsw241d.dll, then you need to replace the $LIBS line under /mingw32/
section with the following:
$LIBS += " -lwxmsw241d"
to link the proper library.
* copy wxruby.so (which is just built) to
C:\MinGW\lib\ruby\site-ruby\1.8\i386-msvcrt\wxruby.so
(the actual path will vary according to your...
2004 Aug 06
12
0.4.0 Compiling Under Mingw
...I am compiling wxRuby 0.4.0 on WinXP Home under MingW and MSYS 1.0. I
can
> compile wxWindows and Ruby fine and I get about 20 minutes into the
wxRuby
> compile and it quits, It says:
[snip]
>
C:\mingw\bin\..\lib\gcc-lib\mingw32\3.2.3\..\..\..\..\mingw32\bin\ld.exe
:
> cannot find -lwxmsw241d
> make: *** [wxruby.so] Error 1
> I replaced the $LIBS in the extconf.rb file per instructions because I
> compiled wxwindows with debugging.
Silly question: have you build the wxWidgets in debug mode? Is the
wxmsw241d (wxWidgets-MSWindows-2.4.1-debug) dll/lib files in the
includes path...