Skip to content

Commit 0512822

Browse files
kaizhangNVdjohansson
authored andcommitted
Update the dependency file (shader-slang#3994)
Update the dependency file to use the latest release version for slang-llvm and slang-glslang where we added a new Linux release to support the older version of Glibc-2.27. Fix a type in github.sh for the glibc compatible option input for premake5.lua.
1 parent 3fa2375 commit 0512822

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

deps/target-deps.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@
44
"dependencies" : [
55
{
66
"name" : "slang-llvm",
7-
"baseUrl" : "https://github.com/shader-slang/slang-llvm/releases/download/v13.x-42/",
7+
"baseUrl" : "https://github.com/shader-slang/slang-llvm/releases/download/v13.x-43/",
88
"optional" : true,
99
"packages" :
1010
{
11-
"windows-x86_64" : { "type" : "url", "path" : "slang-llvm-13.x-42-win64.zip" },
12-
"windows-x86" : { "type": "url", "path" : "slang-llvm-13.x-42-win32.zip" },
13-
"linux-x86_64" : { "type": "url", "path" : "slang-llvm-v13.x-42-linux-x86_64-release.zip" },
14-
"macosx-x86_64" : { "type": "url", "path" : "slang-llvm-v13.x-42-macosx-x86_64-release.zip" }
11+
"windows-x86_64" : { "type" : "url", "path" : "slang-llvm-13.x-43-win64.zip" },
12+
"windows-x86" : { "type": "url", "path" : "slang-llvm-13.x-43-win32.zip" },
13+
"linux-x86_64" : { "type": "url", "path" : "slang-llvm-v13.x-43-linux-x86_64-release.zip" },
14+
"linux-x86_64-glibc-2.27" : { "type": "url", "path" : "slang-llvm-v13.x-43-linux-x86_64-release-glibc-2.27.zip" },
15+
"macosx-x86_64" : { "type": "url", "path" : "slang-llvm-v13.x-43-macosx-x86_64-release.zip" }
1516
}
1617
},
1718
{
1819
"name" : "slang-glslang",
19-
"baseUrl" : "https://github.com/shader-slang/slang-glslang/releases/download/v13.0.0.x-i/slang-glslang-13.0.0.x-i-",
20+
"baseUrl" : "https://github.com/shader-slang/slang-glslang/releases/download/v13.0.0.x-j/slang-glslang-13.0.0.x-j-",
2021
"optional" : true,
2122
"packages" :
2223
{

github_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ "aarch64" == "${TARGETARCH}" && "release" == "${CONFIGURATION}" ]]; then
2121
fi
2222

2323
if [[ ! -z ${GLIBC_COMPATIBLE} ]]; then
24-
glibcCompatible="--glibcForwardCompatible=true"
24+
glibcCompatible="--glibc-forward-compatible=true"
2525
fi
2626

2727
if [[ "${ARCH}" != "${TARGETARCH}" ]]; then

0 commit comments

Comments
 (0)