From 14e03bce63fc2554dbb3f4b8ded5a3fa2f3cd8d1 Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 2 Mar 2024 19:03:06 +0800 Subject: [PATCH] Auto-update ucx to 1.15.0 (#3132) * Update ucx to 1.15.0 * Update xmake.lua --------- Co-authored-by: star9029 --- packages/u/ucx/xmake.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/u/ucx/xmake.lua b/packages/u/ucx/xmake.lua index 24739a710..1b6d4a220 100644 --- a/packages/u/ucx/xmake.lua +++ b/packages/u/ucx/xmake.lua @@ -5,6 +5,7 @@ package("ucx") set_license("BSD-3-Clause") add_urls("https://github.com/openucx/ucx/releases/download/v$(version)/ucx-$(version).tar.gz") + add_versions("1.15.0", "4b202087076bc1c98f9249144f0c277a8ea88ad4ca6f404f94baa9cb3aebda6d") add_versions("1.11.0", "b7189b69fe0e16e3c03784ef674e45687a9c520750bd74a45125c460ede37647") add_configs("cuda", {description = "Enable CUDA support.", default = false, type = "boolean"}) @@ -16,7 +17,7 @@ package("ucx") 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"} + local configs = {"--disable-doxygen-doc", "--without-go", "--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]))