in reply to Re^5: Writing threadsafe perl extensions
in thread Writing threadsafe perl extensions
The bootstrap() call in GMP.pm then also needs to be changed:DLEXT => 'xs.dll',
That should result in perl building a dll called gmp.xs.dll - which won't get confused with the gmp.dll that you already have.if($^O =~ /mswin32/i) { local $DynaLoader::dl_dlext = 'xs.dll'; bootstrap Math::GMP $VERSION; } else {bootstrap Math::GMP $VERSION}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Writing threadsafe perl extensions
by BrowserUk (Patriarch) on Oct 22, 2007 at 02:19 UTC | |
by syphilis (Archbishop) on Oct 22, 2007 at 02:55 UTC |