瀏覽代碼

Fix cpptrace linux build (#4394)

add linux dl syslink
x 1 年之前
父節點
當前提交
6ea5919067
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      packages/c/cpptrace/xmake.lua

+ 4 - 1
packages/c/cpptrace/xmake.lua

@@ -21,8 +21,11 @@ package("cpptrace")
 
     if is_plat("windows") then
         add_syslinks("dbghelp")
-    elseif is_plat("linux", "macosx") then
+    elseif is_plat("macosx") then
         add_deps("libdwarf")
+    elseif is_plat("linux") then
+        add_deps("libdwarf")
+        add_syslinks("dl")
     elseif is_plat("mingw") then
         add_deps("libdwarf")
         add_syslinks("dbghelp")