diff options
| author | Martin Ridgers <[email protected]> | 2021-11-15 15:13:34 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-15 15:13:34 +0100 |
| commit | c3351f38e578129985eb393432ad56c59df5bd2a (patch) | |
| tree | 4238b0c747cde6ee985a63fece75f72dcf95dae7 /zencore/xmake.lua | |
| parent | Deleted some debug code submitted by accident (diff) | |
| download | zen-c3351f38e578129985eb393432ad56c59df5bd2a.tar.xz zen-c3351f38e578129985eb393432ad56c59df5bd2a.zip | |
libcrypto links again libdl so the latter also needs careful handling in xmake
Diffstat (limited to 'zencore/xmake.lua')
| -rw-r--r-- | zencore/xmake.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua index 5923b99c3..eade07700 100644 --- a/zencore/xmake.lua +++ b/zencore/xmake.lua @@ -39,5 +39,6 @@ target('zencore') -- xmake to use the correct order, and "syslinks" is used to force the -- arguments to the end of the line (otherwise they can appear before -- curl and cause more errors). - add_syslinks("ssl", "crypto") + add_syslinks("crypto") + add_syslinks("dl") end |