From: redmine@... Date: 2011-04-20T03:12:47+09:00 Subject: [ruby-core:35816] [Ruby 1.9 - Bug #4585] DLEXT in win32/Makefile.sub is not correct for building with VisualStudio 2008 Issue #4585 has been updated by Felix Petriconi. Hello Luis, I understand. During further development I already stepped over the fact, that more changes would be necessary to have consistent everywhere the DLL extension, which in the end will cause more trouble. So I propose to close this issue. I will try to get the SWIG documentation updated, because this everywhere still uses the DLL extension which does not work then. I already pointed at a different location that I have to try to get necessary parts to be build in Visual Studio 2008. But that is no subject here. Thanks and regards! ---------------------------------------- Bug #4585: DLEXT in win32/Makefile.sub is not correct for building with VisualStudio 2008 http://redmine.ruby-lang.org/issues/4585 Author: Felix Petriconi Status: Open Priority: Normal Assignee: Category: build Target version: ruby -v: ruby 1.9.2p180 (2011-02-18) [i386-mswin32_90] The value of DLEXT is defined per Win32/Makefile.sub as #define DLEXT ".so" which results not in the expected file extension for working under Windows with Visual Studio 2005/2008. I stepped over this problem when I tried to build Ruby with this compiler and then by creating an extension to C++ code by using the SWIG (2.0.3) library. As I am not familiar with the build process with MinGW and I do not know if there is the intention to use the .so extension under Windows, I hesitate to patch this in the Ruby repository. My proposal to change/fix this is (({!if $(MSC_VER) >= 1400 #define DLEXT ".DLL" !else #define DLEXT ".so" !endif})) As well I propose to print into the console the complete name of the library that was attempted to load. Currently only the 'require' value is written. Which did not help me solving this problem. -- http://redmine.ruby-lang.org