in reply to Problems installing Devel::Cover on Strawberry, seems to work on Cygwin
The probability is that the undefined symbols are not exported because they do not appear in the EXPORTS section of win32\perldll.def. They do not appear there because they are not considered a part of the official PerlApi and not intended for use by code outside of the core.
Under *nix/cygwin, all symbols in a .so are exported by default because there is no mechanism to prevent it. As win32 has a mechanism to prevent the exporting of symbols from .dlls, it is used.
Hence, code that subverts the official API set, builds under *nix/cygwin but not under win32. If you could persuade the p5p guys to export all the symbols in perl5x.dll, regardless of it's official API status, about 90% of the "builds fine on *nix, but not on windoze" problems would disappear over night.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problems installing Devel::Cover on Strawberry, seems to work on Cygwin
by syphilis (Archbishop) on Mar 28, 2008 at 18:14 UTC | |
by BrowserUk (Patriarch) on Mar 28, 2008 at 18:18 UTC | |
by syphilis (Archbishop) on Mar 29, 2008 at 04:01 UTC | |
by BrowserUk (Patriarch) on Mar 29, 2008 at 09:42 UTC |