diff options
| author | Martin Ridgers <[email protected]> | 2023-02-03 08:41:18 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2023-02-03 08:41:18 +0100 |
| commit | acfe1ef59d8d5aee9f9b137fa9a8b4effec9af3b (patch) | |
| tree | 78c2863a64b003efc4b8d8ab8917dc61c241112e | |
| parent | Removed the AppImage-based bundling step on Linux (diff) | |
| download | zen-acfe1ef59d8d5aee9f9b137fa9a8b4effec9af3b.tar.xz zen-acfe1ef59d8d5aee9f9b137fa9a8b4effec9af3b.zip | |
Commented out breakpad_client xmake.lua adjustment - not applicable yet
Later baselines of vcpkg will change to a newer version of sentry-native
that will produce libbreakpad_client. This block of xmake script will
then be required to coerce xmake to order libraries correctly
| -rw-r--r-- | zenserver/xmake.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zenserver/xmake.lua b/zenserver/xmake.lua index 5bccbcbeb..992923d48 100644 --- a/zenserver/xmake.lua +++ b/zenserver/xmake.lua @@ -46,6 +46,8 @@ target("zenserver") "vcpkg::sol2" ) + -- Only applicable to later versions of sentry-native + --[[ if is_plat("linux") then -- As sentry_native uses symbols from breakpad_client, the latter must -- be specified after the former with GCC-like toolchains. xmake however @@ -53,3 +55,4 @@ target("zenserver") -- line below forces breakpad_client to be to the right of sentry_native add_syslinks("breakpad_client") end + ]]-- |