From 3c106c6b81660b6a69f6f3d0c788834efa717a83 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 22 Jul 2017 10:40:52 +0200 Subject: [PATCH] meson: we need -rdynamic here not -export-dynamic this is passed to the compiler not linker, so we need to tell the compiler to pass that to the linker. --- src/bin/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/meson.build b/src/bin/meson.build index fac63d96d..f19555dcc 100644 --- a/src/bin/meson.build +++ b/src/bin/meson.build @@ -429,7 +429,7 @@ executable('enlightenment', include_directories: include_directories('.', 'efx', 'generated', '../..'), dependencies: deps_e, c_args: '-DE_LOGGING=1', - link_args: '-export-dynamic', + link_args: '-rdynamic', install_dir: dir_bin, install: true )