소스 검색

boost: fix process syslinks on windows

star9029 7 달 전
부모
커밋
3b847188b8
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/b/boost/xmake.lua

+ 2 - 0
packages/b/boost/xmake.lua

@@ -64,6 +64,8 @@ package("boost")
 
     if is_plat("linux", "bsd") then
         add_syslinks("pthread", "dl")
+    elseif is_plat("windows", "mingw") then
+        add_syslinks("ntdll", "shell32", "advapi32", "user32", "ws2_32")
     end
 
     on_fetch("fetch")