From ecc954703f937aaaaed614daff0b197ef808ee49 Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Tue, 17 Mar 2015 11:14:26 +0100 Subject: [PATCH] BUILD: lua: it miss the '-ldl' directive The Lua library requires the 'dl' library. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a12e4c9fcd..e403239c04 100644 --- a/Makefile +++ b/Makefile @@ -575,7 +575,7 @@ $(error unable to automatically detect the Lua library name, you can enforce its endif endif -OPTIONS_LDFLAGS += $(LUA_LD_FLAGS) -l$(LUA_LIB_NAME) -lm +OPTIONS_LDFLAGS += $(LUA_LD_FLAGS) -l$(LUA_LIB_NAME) -lm -ldl OPTIONS_OBJS += src/hlua.o endif -- 2.39.5