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.
This commit is contained in:
Marcel Hollerbach 2017-07-22 10:40:52 +02:00
parent b976006bb5
commit 3c106c6b81
1 changed files with 1 additions and 1 deletions

View File

@ -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
)