]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Add -rdynamic on linux
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 5 Apr 2019 07:16:40 +0000 (09:16 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 5 Apr 2019 07:16:40 +0000 (09:16 +0200)
Makefile

index 0c5d11729f5754e07b1a367791ac96d845b73690..ef69a0d7dde14408ec0a9cbd3c4fa6c7fee02379 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -68,7 +68,7 @@ util_obj := $(util_src:.c=.o)
 GW_OBJ=${src_obj} ${ast_obj} ${parse_obj} ${emit_obj} ${oo_obj} ${vm_obj} ${util_obj} ${lib_obj}
 
 ifeq ($(shell uname), Linux)
-LDFLAGS+=-lrt
+LDFLAGS += -lrt -rdynamic
 endif
 
 CCFG="${CFLAGS}"