Browse Source

Compress LLVM archives using zstd.

pull/1507/head
Joao Matos 5 years ago
parent
commit
2b1095c844
  1. 4
      build/scripts/LLVM.lua

4
build/scripts/LLVM.lua

@ -464,6 +464,10 @@ function archive_llvm(dir) @@ -464,6 +464,10 @@ function archive_llvm(dir)
else
execute_or_die("tar cJf " .. path.join("..", archive) .. " *")
end
archive = dir .. ".tar.zst"
execute_or_die("tar --use-compress-program zstd -cf " .. path.join("..", archive) .. " *")
os.chdir(cwd)
if is_vagrant() then
os.copyfile(archive, "/cppsharp")

Loading…
Cancel
Save