bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=3c106c6b81660b6a69f6f3d0c788834efa717a83
commit 3c106c6b81660b6a69f6f3d0c788834efa717a83 Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Sat Jul 22 10:40:52 2017 +0200 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 ) --