summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2010-11-01 20:34:11 +0100
committerRyan Dahl <ry@tinyclouds.org>2010-11-01 12:57:28 -0700
commit7a7e88d44bae100932cc283912eb0937ee116bff (patch)
tree675b241bf7eadc7a4119d948eeeb9d5a2459ba33
parent6bf97808eedde1d2ef86349ef23fb2a7b590389a (diff)
downloadnode-new-7a7e88d44bae100932cc283912eb0937ee116bff.tar.gz
Fix 'undefined symbol' errors when loading native modules.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 51cd94c295..85434f92ac 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ ifeq ($(platform),darwin)
endif
ifeq ($(platform),linux)
- LINKFLAGS += -pthread -lrt
+ LINKFLAGS += -pthread -lrt -rdynamic
endif
ifeq ($(platform),solaris)