Skip to content

Commit 65429a8

Browse files
Auto-update usd to v25.11 (#8631)
* Update usd to v25.11 * Update version check for usd package in xmake.lua --------- Co-authored-by: star9029 <[email protected]>
1 parent 93a5324 commit 65429a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/u/usd/xmake.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package("usd")
66
add_urls("https://github.com/PixarAnimationStudios/USD/archive/refs/tags/$(version).tar.gz",
77
"https://github.com/PixarAnimationStudios/USD.git")
88

9+
add_versions("v25.11", "c37c633b5037a4552f61574670ecca8836229b78326bd62622f3422671188667")
910
add_versions("v25.08", "2a93c2390ae35a3e312f3fb66e6f403a0e046893e3f0d706be82963345a08cb3")
1011
add_versions("v25.05.01", "f424e8db26e063a1b005423ee52142e75c38185bbd4b8126ef64173e906dd50f")
1112
add_versions("v25.05", "231faca9ab71fa63d6c1e0da18bda0c365f82d9bef1cfd4b3d3d6784c8d5fb96")
@@ -39,10 +40,10 @@ package("usd")
3940
if not package:is_plat("macosx") then
4041
assert(package:is_arch("x64", "x86_64"), "package(usd) only support x86")
4142
end
42-
if package:version() and package:version():eq("25.08") and
43+
if package:version() and package:version():ge("25.08") and
4344
package:is_plat("linux") and package:has_tool("cxx", "clang") then
4445

45-
raise("package(usd v25.08) unsupported clang toolchain")
46+
raise("package(usd >=v25.08) unsupported clang toolchain")
4647
end
4748
end)
4849
end

0 commit comments

Comments
 (0)