Excerpts from the mail message of Soumen Das:
) 
) But if I remove this "PERL_DL_NONLAZY=1", everything seems to work fine.
) What does this PERL_DL_NONLAZY=1 do ?

Without PERL_DL_NONLAZY, DynaLoader.pm will load the shared library
in "lazy" mode which doesn't resolve symbols until each is used.
This is a performance win but is bad for testing because you'd
have to exhaustively test your code before you'd find all of the
symbols that are undefined because of libraries you forgot to link
to.

-- 
Tye McQueen    Nothing is obvious unless you are overlooking something
         http://www.metronet.com/~tye/ (scripts, links, nothing fancy)

Reply via email to