On Sun, Jul 22, 2012 at 2:22 PM, 文冰华佗 <[email protected]> wrote: > change -static into -rdynamic does works well, BUT my server in prod, only > could use static executable node, no dynamic lib need. > that is the point...
Are you trying to build: a) a monolithic executable that contains both node and ldap, or b) a static node binary that loads the ldap add-on at runtime? Option b) is where you need -rdynamic, otherwise symbols from the binary won't be visible to the add-on. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
