From cb5e0de18a0ea79c24b0df4e8e909f1439459de4 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Fri, 8 Dec 2023 20:00:44 +0100 Subject: [PATCH] Update ISPC to v1.22.0 GitOrigin-RevId: 0a58324abd72780892e6d226e7b02e0ff45f9135 --- fetch_ispc.bzl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/fetch_ispc.bzl b/fetch_ispc.bzl index d722844..97a5a23 100644 --- a/fetch_ispc.bzl +++ b/fetch_ispc.bzl @@ -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", )