Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2010-11-01 22:34:11 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-01 22:57:28 +0300
commit7a7e88d44bae100932cc283912eb0937ee116bff (patch)
tree675b241bf7eadc7a4119d948eeeb9d5a2459ba33 /Makefile
parent6bf97808eedde1d2ef86349ef23fb2a7b590389a (diff)
Fix 'undefined symbol' errors when loading native modules.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 51cd94c2950..85434f92ac1 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)