From 4ec05d087e07dc1ae2ada9d36ab2597c175890b4 Mon Sep 17 00:00:00 2001 From: Dmitry Antipov Date: Wed, 23 Sep 2020 11:40:16 +0300 Subject: build: drop -rdynamic from compiler flags Since -rdynamic is meaningless during compilation, drop it from GF_CFLAGS. Note GF_LDFLAGS unconditionally use -rdynamic anyway. Change-Id: I07c7086a8a6adad8358b88999d98828c1cbfb464 Signed-off-by: Dmitry Antipov Updates: #1002 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4efddf4e38..e2d6fd66ce 100644 --- a/configure.ac +++ b/configure.ac @@ -275,7 +275,7 @@ AC_ARG_ENABLE([debug], [Enable debug build options.])) if test "x$enable_debug" = "xyes"; then BUILD_DEBUG=yes - GF_CFLAGS="${GF_CFLAGS} -g -rdynamic -O0 -DDEBUG" + GF_CFLAGS="${GF_CFLAGS} -g -O0 -DDEBUG" else BUILD_DEBUG=no fi -- cgit