package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

185 lines
9.3 KiB

package("llvm")
set_kind("toolchain")
set_homepage("https://llvm.org/")
set_description("The LLVM Compiler Infrastructure")
local precompiled = false
if is_plat("windows") then
if is_arch("x86") then
set_urls("https://github.com/xmake-mirror/llvm-windows/releases/download/$(version)/clang+llvm-$(version)-win32.zip")
add_versions("11.0.0", "268043ae0b656cf6272ccb9b8e3f21f51170b74ed8997ddc0b99587983b821ca")
add_versions("14.0.0", "63afc3c472cb279978c5a7efc25b8783a700aeb416df67886b7057eba52a8742")
add_versions("15.0.7", "8dbabb2194404220f8641b4b18b24b36eca0ae751380c23fc7743097e205b95f")
add_versions("16.0.6", "5e1f560f75e7a4c7a6509cf7d9a28b4543e7afcb4bcf4f747e9f208f0efa6818")
add_versions("17.0.6", "ce78b510603cb3b347788d2f52978e971cf5f55559151ca13a73fd400ad80c41")
add_versions("18.1.1", "9f59dd99d45f64a5c00b00d27da8fe8b5f162905026f5c9ef0ade6e73ae18df3")
precompiled = true
else
set_urls("https://github.com/xmake-mirror/llvm-windows/releases/download/$(version)/clang+llvm-$(version)-win64.zip")
add_versions("11.0.0", "db5b3a44f8f784ebc71f716b54eb63c0d8d21aead12449f36291ab00820271c7")
add_versions("14.0.0", "c1e1ddf11aa73c58073956d9217086550544328ed5e6ec64c1a709badb231711")
add_versions("15.0.7", "7d29ca82f8b73e9973209e90428ec9f3fbd3b01925bd26e34f59e959e9ea7eb3")
add_versions("16.0.6", "7adb1a630b6cc676a4b983aca9b01e67f770556c6e960e9ee9aa7752c8beb8a3")
add_versions("17.0.6", "c480a4c280234b91f7796a1b73b18134ae62fe7c88d2d0c33312d33cb2999187")
add_versions("18.1.1", "28a9fbcd18f1e7e736ece6d663726bc15649f025343c3004dcbfc2d367b9924c")
precompiled = true
end
end
if not precompiled then
set_urls("https://github.com/llvm/llvm-project/releases/download/llvmorg-$(version)/llvm-project-$(version).src.tar.xz")
add_versions("11.0.0", "b7b639fc675fa1c86dd6d0bc32267be9eb34451748d2efd03f674b773000e92b")
add_versions("14.0.0", "35ce9edbc8f774fe07c8f4acdf89ec8ac695c8016c165dd86b8d10e7cba07e23")
add_versions("15.0.7", "8b5fcb24b4128cf04df1b0b9410ce8b1a729cb3c544e6da885d234280dedeac6")
add_versions("16.0.5", "37f540124b9cfd4680666e649f557077f9937c9178489cea285a672e714b2863")
add_versions("16.0.6", "ce5e71081d17ce9e86d7cbcfa28c4b04b9300f8fb7e78422b1feb6bc52c3028e")
add_versions("17.0.6", "58a8818c60e6627064f312dbf46c02d9949956558340938b71cf731ad8bc0813")
add_versions("18.1.1", "8f34c6206be84b186b4b31f47e1b52758fa38348565953fad453d177ef34c0ad")
end
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
add_configs("all", {description = "Enable all projects.", default = false, type = "boolean"})
add_configs("bolt", {description = "Enable bolt project.", default = false, type = "boolean"})
add_configs("clang", {description = "Enable clang project.", default = true, type = "boolean"})
add_configs("clang-tools-extra", {description = "Enable extra clang tools project.", default = false, type = "boolean"})
add_configs("libclc", {description = "Enable libclc project.", default = false, type = "boolean"})
add_configs("lld", {description = "Enable lld project.", default = false, type = "boolean"})
add_configs("lldb", {description = "Enable lldb project.", default = false, type = "boolean"})
add_configs("polly", {description = "Enable polly project.", default = false, type = "boolean"})
add_configs("pstl", {description = "Enable pstl project.", default = false, type = "boolean"})
add_configs("mlir", {description = "Enable mlir project.", default = false, type = "boolean"})
add_configs("flang", {description = "Enable flang project.", default = false, type = "boolean"})
add_configs("compiler-rt", {description = "Enable compiler-rt project.", default = true, type = "boolean"})
add_configs("libunwind", {description = "Enable libunwind runtime.", default = true, type = "boolean"})
add_configs("libc", {description = "Enable libc runtime.", default = false, type = "boolean"})
add_configs("libcxx", {description = "Enable libcxx runtime.", default = true, type = "boolean"})
add_configs("libcxxabi", {description = "Enable libcxxabi runtime.", default = true, type = "boolean"})
add_configs("openmp", {description = "Enable openmp runtime.", default = false, type = "boolean"})
on_load(function (package)
if not package:is_plat("windows", "msys") then
package:add("deps", "cmake")
package:add("deps", "python 3.x", {kind = "binary", host = true})
package:add("deps", "zlib", "libffi", {host = true})
end
if package:is_plat("linux") then
package:add("deps", "binutils", {host = true}) -- needed for gold and strip
end
if package:is_plat("linux", "bsd") then
if package:config("openmp") then
package:add("deps", "libelf", {host = true})
end
end
-- add components
if package:is_library() then
local components = {"mlir", "clang", "libunwind"}
for _, name in ipairs(components) do
if package:config(name) or package:config("all") then
package:add("components", name, {deps = "base"})
end
end
package:add("components", "base", {default = true})
end
end)
on_fetch("fetch")
on_install("windows", "msys", function (package)
os.cp("*", package:installdir())
end)
on_install("linux", "macosx|x86_64", "bsd", function (package)
local projects = {
"bolt",
"clang",
"clang-tools-extra",
"libclc",
"lld",
"lldb",
"openmp",
"polly",
"pstl",
"mlir",
"flang",
"compiler-rt",
"openmp"
}
local projects_enabled = {}
if package:config("all") then
table.insert(projects_enabled, "all")
else
for _, project in ipairs(projects) do
if package:config(project) then
table.insert(projects_enabled, project)
end
end
end
local runtimes = {
"libc",
"libunwind",
"libcxx",
"libcxxabi"
}
local runtimes_enabled = {}
for _, runtime in ipairs(runtimes) do
if package:config(runtime) then
table.insert(runtimes_enabled, runtime)
end
end
local configs = {
"-DCMAKE_BUILD_TYPE=Release",
"-DLLVM_ENABLE_PROJECTS=" .. table.concat(projects_enabled, ";"),
"-DLLVM_ENABLE_RUNTIMES=" .. table.concat(runtimes_enabled, ";"),
"-DLLVM_POLLY_LINK_INTO_TOOLS=ON",
"-DLLVM_BUILD_EXTERNAL_COMPILER_RT=ON",
"-DLLVM_LINK_LLVM_DYLIB=ON",
"-DLLVM_ENABLE_EH=ON",
"-DLLVM_ENABLE_FFI=ON",
"-DLLVM_ENABLE_RTTI=ON",
"-DLLVM_INCLUDE_DOCS=OFF",
"-DLLVM_INCLUDE_TESTS=OFF",
"-DLLVM_INSTALL_UTILS=ON",
"-DLLVM_ENABLE_Z3_SOLVER=OFF",
"-DLLVM_OPTIMIZED_TABLEGEN=ON",
"-DLLVM_TARGETS_TO_BUILD=all",
"-DFFI_INCLUDE_DIR=" .. package:dep("libffi"):installdir("include"),
"-DFFI_LIBRARY_DIR=" .. package:dep("libffi"):installdir("lib"),
"-DLLDB_USE_SYSTEM_DEBUGSERVER=ON",
"-DLLDB_ENABLE_PYTHON=OFF",
"-DLLDB_ENABLE_LUA=OFF",
"-DLLDB_ENABLE_LZMA=OFF",
"-DLIBOMP_INSTALL_ALIASES=OFF"
}
table.insert(configs, "-DLLVM_CREATE_XCODE_TOOLCHAIN=" .. (package:is_plat("macosx") and "ON" or "OFF")) -- TODO
table.insert(configs, "-DLLVM_BUILD_LLVM_C_DYLIB=" .. (package:is_plat("macosx") and "ON" or "OFF"))
if package:has_tool("cxx", "clang", "clangxx") then
table.insert(configs, "-DLLVM_ENABLE_LIBCXX=ON")
else
table.insert(configs, "-DLLVM_ENABLE_LIBCXX=OFF")
table.insert(configs, "-DCLANG_DEFAULT_CXX_STDLIB=libstdc++")
-- enable llvm gold plugin for LTO
local binutils = package:dep("binutils")
if binutils then
table.insert(configs, "-DLLVM_BINUTILS_INCDIR=" .. binutils:installdir("include"))
end
end
os.cd("llvm")
import("package.tools.cmake").install(package, configs)
end)
on_component("mlir", "components.mlir")
on_component("clang", "components.clang")
on_component("libunwind", "components.libunwind")
on_component("base", "components.base")
on_test(function (package)
if package:is_toolchain() and not package:is_cross() then
if not package:is_plat("windows") then
os.vrun("llvm-config --version")
end
if package:config("clang") then
os.vrun("clang --version")
end
end
end)