Problems with "require" when embedding Ruby

I have Ruby interpreter embedded in engine... so far all was good. But
when I tried to require custom extension compiled in .dll(some C++
exported using SWIG) I encountered an error... As far as I know require
simple is searching for .dll or .so with same name... Maybe SWIG
generates bad dll , but standart non embedded Ruby runs this require
very well....
Do you have any advices? Any help will be thanksfull.

···

--
Posted via http://www.ruby-forum.com/.

Hi,

In <3e557e01954a584ba2ce911037bbf55b@ruby-forum.com>
  "Problems with "require" when embedding Ruby" on Tue, 7 Mar 2006 00:59:24 +0900,

···

Rurouni <rurouni.ghost@gmail.com> wrote:

I have Ruby interpreter embedded in engine... so far all was good. But
when I tried to require custom extension compiled in .dll(some C++
exported using SWIG) I encountered an error...

Are you using rb_require()? If so, try the following:

  rb_funcall(Qnil, rb_intern("require"), 1, rb_str_new2("YOUR_LIB"));

Thanks,
--
kou