diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2010-11-01 20:34:11 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-11-01 12:57:28 -0700 |
commit | 7a7e88d44bae100932cc283912eb0937ee116bff (patch) | |
tree | 675b241bf7eadc7a4119d948eeeb9d5a2459ba33 | |
parent | 6bf97808eedde1d2ef86349ef23fb2a7b590389a (diff) | |
download | node-new-7a7e88d44bae100932cc283912eb0937ee116bff.tar.gz |
Fix 'undefined symbol' errors when loading native modules.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ ifeq ($(platform),darwin) endif ifeq ($(platform),linux) - LINKFLAGS += -pthread -lrt + LINKFLAGS += -pthread -lrt -rdynamic endif ifeq ($(platform),solaris) |