diff options
author | Mihai Fufezan <[email protected]> | 2023-03-18 21:00:52 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-03-18 21:01:24 +0200 |
commit | 06244555915339967864292dd0b83cd9732516d8 (patch) | |
tree | 8cc36fe9cd53b7ca58a78899c7c009c05406fe64 /src/meson.build | |
parent | 2ba5238b8e985bb5944b16ac657bf3653a812c00 (diff) | |
download | Hyprland-06244555915339967864292dd0b83cd9732516d8.tar.gz Hyprland-06244555915339967864292dd0b83cd9732516d8.zip |
Meson: add rdynamic ld flag
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build index 7b658d31..32a7a127 100644 --- a/src/meson.build +++ b/src/meson.build @@ -3,6 +3,7 @@ src = globber.stdout().strip().split('\n') executable('Hyprland', src, cpp_args: ['-DWLR_USE_UNSTABLE'], + link_args: '-rdynamic', dependencies: [ server_protos, dependency('wayland-server'), |