Skip to content

Commit 46db79d

Browse files
committed
update setup.py auto-downloads to point to updated libwebgpu_dawn.dylib/so shared libraries
1 parent 40fd25d commit 46db79d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ def download_dawn(os_name):
5757
print("=====================\n")
5858

5959
outfile_map = {
60-
"macOS": "third_party/lib/libdawn.dylib",
61-
"Linux": "third_party/lib/libdawn.so",
60+
"macOS": "third_party/lib/libwebgpu_dawn.dylib",
61+
"Linux": "third_party/lib/libwebgpu_dawn.so",
6262
}
6363
url_map = {
64-
"macOS": "https://github.com/austinvhuang/dawn-artifacts/releases/download/prerelease/libdawn.dylib",
65-
"Linux": "https://github.com/austinvhuang/dawn-artifacts/releases/download/prerelease/libdawn.so",
64+
"macOS": "https://github.com/austinvhuang/dawn-artifacts/releases/download/0.2.0/libwebgpu_dawn.dylib",
65+
"Linux": "https://github.com/austinvhuang/dawn-artifacts/releases/download/0.2.0/libwebgpu_dawn.so",
6666
}
6767

6868
outfile = outfile_map.get(os_name)

0 commit comments

Comments
 (0)