in reply to Detect which version of perl an XS module is linked against?
You can load the xs extension using dlopen (or whatever windows has to realize that functionality - glib has g_module_open which allows to specify if symbols should be resolved lazily or not, so there has to be a way to do that on win32) and tell it to resolve all symbols non-lazily. If that fails it's probably due to some removed library.
Also I wonder why those extensions are linked against libperl. I thought those are loaded from perl/libperl. At least on my unix system I couldn't find a single extension linked to libperl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Detect which version of perl an XS module is linked against?
by Limbic~Region (Chancellor) on Jan 03, 2008 at 00:00 UTC | |
by rafl (Friar) on Jan 03, 2008 at 00:06 UTC |