소스 검색

Update xmake.lua

ruki 4 년 전
부모
커밋
b9b9c3a2b9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      packages/l/llvm/xmake.lua

+ 3 - 1
packages/l/llvm/xmake.lua

@@ -155,7 +155,9 @@ package("llvm")
     end)
     end)
 
 
     on_test(function (package)
     on_test(function (package)
-        os.vrun("llvm-config --version")
+        if not package:is_plat("windows", "mingw") then
+            os.vrun("llvm-config --version")
+        end
         if package:config("clang") then
         if package:config("clang") then
             os.vrun("clang --version")
             os.vrun("clang --version")
         end
         end