From 7a7e88d44bae100932cc283912eb0937ee116bff Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 1 Nov 2010 20:34:11 +0100 Subject: Fix 'undefined symbol' errors when loading native modules. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.1