-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dynamic loading of mapnik datasource plugins should now work on linux…
… - workaround for lack of ability to set dlopen flags in node process to RTLD_NOW is to preload libmapnik.so symbols by having mapnik.node load itself using the RTLD_NOW flag - yes this is nuts and will hopefully be removed soon by fix upstream in node, see: https://github.com/ry/node/issues/issue/436
- Loading branch information
Dane Springmeyer
committed
Nov 18, 2010
1 parent
28a1014
commit 58ece58
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58ece58
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, this was super helpful. I thought setting
LD_BIND_NOW
before starting node might work too, but it didn't seem to as well as this did.