From: nobuyoshi nakada Date: 2005-12-29T13:16:24+09:00 Subject: Re: Loading shared libraries built by Visual Studio C++ 8 Hi, At Thu, 29 Dec 2005 10:22:55 +0900, Glenn M. Lewis wrote in [ruby-talk:172904]: > I have Ruby 1.8.2 (Windows One-click installer - thanks, Curt!) > and used to use Visual C++ 6.0 for a long time to create shared libs > (using SWIG and extconf.rb) that I could load in with "require"... but > now that I've upgraded to Visual Studio C++ 8.0, I get the following > error after recompiling everything: VC6 and VC8 use the different versions of runtime DLL. You can't mix them because of the restriction of Windows DLL loader mechanism. -- Nobu Nakada