diff options
| author | Stefan Boberg <[email protected]> | 2025-08-26 16:31:10 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-08-26 16:31:10 +0200 |
| commit | 6e1be7335b2f0fae8286de049d20ec4a62498f3d (patch) | |
| tree | e713abcd3a97d9906b7a3bb31a823f0dafd5dd88 | |
| parent | remove attempt at config specific zensentry default value (diff) | |
| download | zen-6e1be7335b2f0fae8286de049d20ec4a62498f3d.tar.xz zen-6e1be7335b2f0fae8286de049d20ec4a62498f3d.zip | |
try to fix linker order for sentry
| -rw-r--r-- | src/zencore/xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/zencore/xmake.lua b/src/zencore/xmake.lua index b3a33e052..c249d8e3f 100644 --- a/src/zencore/xmake.lua +++ b/src/zencore/xmake.lua @@ -77,6 +77,10 @@ target('zencore') -- is unaware of this and simply globs files from vcpkg's output. The -- line below forces breakpad_client to be to the right of sentry_native add_syslinks("breakpad_client") + add_syslinks("curl") + add_syslinks("ssl") + add_syslinks("crypto") + add_syslinks("z") end if is_plat("macosx") then |