Procházet zdrojové kódy

arrow: remove setting vendored mimalloc and xsimd url.

Revert this commit and set these urls to you internal mirror for
building without internet access.
Chen Yufei před 3 roky
rodič
revize
821449bfba
1 změnil soubory, kde provedl 0 přidání a 5 odebrání
  1. 0 5
      packages/a/arrow/xmake.lua

+ 0 - 5
packages/a/arrow/xmake.lua

@@ -124,11 +124,6 @@ ${yellow}In case of boost dependency conflicts, please use following code (order
         -- To fix arrow src/arrow/CMakeLists.txt:538, when CMAKE_SYSTEM_NAME set but CMAKE_SYSTEM_PROCESSOR is not causing error.
         table.insert(configs, "-DCMAKE_SYSTEM_PROCESSOR=" .. (package:is_arch("x86_64") and "x86_64" or "x86"))
 
-        if package:version():eq("7.0.0") then
-            -- For install without internet access, change the url to internal accessible one.
-            os.setenv("ARROW_MIMALLOC_URL", "https://github.com/microsoft/mimalloc/archive/v1.7.3.tar.gz")
-            os.setenv("ARROW_XSIMD_URL", "https://github.com/xtensor-stack/xsimd/archive/aeec9c872c8b475dedd7781336710f2dd2666cb2.tar.gz")
-        end
         os.cd("cpp")
         import("package.tools.cmake").install(package, configs)
     end)