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.
31 lines
1.3 KiB
31 lines
1.3 KiB
package("ucx") |
|
|
|
set_homepage("https://openucx.org/") |
|
set_description("Unified Communication X") |
|
set_license("BSD-3-Clause") |
|
|
|
add_urls("https://github.com/openucx/ucx/releases/download/v$(version)/ucx-$(version).tar.gz") |
|
add_versions("1.11.0", "b7189b69fe0e16e3c03784ef674e45687a9c520750bd74a45125c460ede37647") |
|
|
|
add_configs("cuda", {description = "Enable CUDA support.", default = false, type = "boolean"}) |
|
|
|
on_load("linux", function (package) |
|
if package:config("cuda") then |
|
package:add("deps", "cuda") |
|
end |
|
end) |
|
|
|
on_install("linux", function (package) |
|
local configs = {"--disable-doxygen-doc", "--without-java", "--without-rte", "--without-fuse3", "--without-gdrcopy", "--without-rdmacm", "--without-knem", "--without-xpmem", "--without-ugni"} |
|
if package:config("cuda") then |
|
local cuda = package:dep("cuda"):fetch() |
|
table.insert(configs, "--with-cuda=" .. path.directory(cuda.sysincludedirs[1])) |
|
else |
|
table.insert(configs, "--without-cuda") |
|
end |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("ucp_get_version_string", {includes = "ucp/api/ucp.h"})) |
|
end)
|
|
|