Skip to content

Commit

Permalink
Update ISPC to v1.22.0
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 0a58324abd72780892e6d226e7b02e0ff45f9135
  • Loading branch information
Vertexwahn committed Dec 8, 2023
1 parent aeaa54e commit cb5e0de
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions fetch_ispc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,44 @@ def fetch_ispc():
"""function which fetches the remote prebuild ISPC compiler
"""

# For download link see https://ispc.github.io/downloads.html
# See for download links https://ispc.github.io/downloads.html

http_archive(
name = "ispc_linux_x86_64",
urls = [
"https://github.com/ispc/ispc/releases/download/v1.20.0/ispc-v1.20.0-linux.tar.gz",
"https://github.com/ispc/ispc/releases/download/v1.22.0/ispc-v1.22.0-linux.tar.gz",
],
sha256 = "e6412b88aa312fcd10c46f92df0149ccc4d99e53552c4ce127aa6c634fe9b308",
strip_prefix = "ispc-v1.20.0-linux",
strip_prefix = "ispc-v1.22.0-linux",
build_file = "@rules_ispc//:ispc_linux_x86_64.BUILD",
)

http_archive(
name = "ispc_windows_x86_64",
urls = [
"https://github.com/ispc/ispc/releases/download/v1.20.0/ispc-v1.20.0-windows.zip",
"https://github.com/ispc/ispc/releases/download/v1.22.0/ispc-v1.22.0-windows.zip",
],
sha256 = "e212ebfb4e8afb57adc103a2579c52673a3ca49610fbc2a5eae643d3d378548d",
strip_prefix = "ispc-v1.20.0-windows",
strip_prefix = "ispc-v1.22.0-windows",
build_file = "@rules_ispc//:ispc_windows_x86_64.BUILD",
)

http_archive(
name = "ispc_osx_x86_64",
urls = [
"https://github.com/ispc/ispc/releases/download/v1.20.0/ispc-v1.20.0-macOS.x86_64.tar.gz",
"https://github.com/ispc/ispc/releases/download/v1.22.0/ispc-v1.22.0-macOS.x86_64.tar.gz",
],
sha256 = "e25222d2d6f4f8e3561556ac73f88721ceb5486439d6c2a566d37407ad9a5907",
strip_prefix = "ispc-v1.20.0-macOS.x86_64",
strip_prefix = "ispc-v1.22.0-macOS.x86_64",
build_file = "@rules_ispc//:ispc_osx_x86_64.BUILD",
)

http_archive(
name = "ispc_osx_arm64",
urls = [
"https://github.com/ispc/ispc/releases/download/v1.20.0/ispc-v1.20.0-macOS.arm64.tar.gz",
"https://github.com/ispc/ispc/releases/download/v1.22.0/ispc-v1.22.0-macOS.arm64.tar.gz",
],
sha256 = "c423a5a88d7a9a6ed667e41d025801c123fa0c5fd384d4ea138fa1fcf2bc24c9",
strip_prefix = "ispc-v1.20.0-macOS.arm64",
strip_prefix = "ispc-v1.22.0-macOS.arm64",
build_file = "@rules_ispc//:ispc_osx_arm64.BUILD",
)

0 comments on commit cb5e0de

Please sign in to comment.