Skip to content

Commit

Permalink
Bump SPIRV-LLVM Translator. (JuliaPackaging#9768)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Nov 12, 2024
1 parent 16e4de8 commit c0cfe26
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version = v"15.0"
llvm_version = v"15.0.7"
include("../common.jl")

# Collection of sources required to build attr
sources = [GitSource(repo, "1e170e22f65d6bf01e6c592f8ed845dcceb69bea")]
# Collection of sources required to build the package
sources = [GitSource(repo, "4b96335944e70032f4dfa4807d9c5683eaabdae5")]

# Dependencies that must be installed before this package can be built
dependencies = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version = v"16.0"
llvm_version = v"16.0.6"
include("../common.jl")

# Collection of sources required to build attr
sources = [GitSource(repo, "1f9e0e36d8917cece7593771304d8db0bcd9f614")]
# Collection of sources required to build the package
sources = [GitSource(repo, "b786f8c31eead5788ac8ca33ccedf29a4a7faedf")]

# Dependencies that must be installed before this package can be built
dependencies = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version = v"17.0"
llvm_version = v"17.0.6"
include("../common.jl")

# Collection of sources required to build attr
sources = [GitSource(repo, "3aa5bcd0c60a2c05b3a045339b2ef001465961ec")]
# Collection of sources required to build the package
sources = [GitSource(repo, "27bbf0fa898b6945dbd097dfd1e87b4f4becb19a")]

# Dependencies that must be installed before this package can be built
dependencies = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version = v"18.0"
llvm_version = v"18.1.7"
include("../common.jl")

# Collection of sources required to build attr
sources = [GitSource(repo, "242df2cb83e2322b456990fb0ca3e30bd9209ed0")]
# Collection of sources required to build the package
sources = [GitSource(repo, "7515735e387c65cbb7821a78f122cfd89115a779")]

# Dependencies that must be installed before this package can be built
dependencies = [
Expand Down
15 changes: 15 additions & 0 deletions S/SPIRV_LLVM_Translator/SPIRV_LLVM_Translator@19/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version = v"19.0"
llvm_version = v"19.1.1"
include("../common.jl")

# Collection of sources required to build the package
sources = [GitSource(repo, "90a976491d3847657396456e0e94d7dc48d35996")]

# Dependencies that must be installed before this package can be built
dependencies = [
BuildDependency(PackageSpec(name="LLVM_full_jll", version=llvm_version)),
]

# Build the tarballs.
build_tarballs(ARGS, name, version, sources, get_script(llvm_version), platforms, products,
dependencies; preferred_gcc_version=v"10", julia_compat="1.6")
13 changes: 7 additions & 6 deletions S/SPIRV_LLVM_Translator_unified/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ include(joinpath(YGGDRASIL_DIR, "platforms", "llvm.jl"))

name = "SPIRV_LLVM_Translator_unified"
repo = "https://github.com/KhronosGroup/SPIRV-LLVM-Translator.git"
version = v"0.6"
version = v"0.7"

llvm_versions = [v"15.0.7", v"16.0.6", v"17.0.6", v"18.1.7"]
llvm_versions = [v"15.0.7", v"16.0.6", v"17.0.6", v"18.1.7", v"19.1.1"]

# Collection of sources required to build SPIRV_LLVM_Translator
sources = Dict(
v"15.0.7" => [GitSource(repo, "1e170e22f65d6bf01e6c592f8ed845dcceb69bea")],
v"16.0.6" => [GitSource(repo, "1f9e0e36d8917cece7593771304d8db0bcd9f614")],
v"17.0.6" => [GitSource(repo, "3aa5bcd0c60a2c05b3a045339b2ef001465961ec")],
v"18.1.7" => [GitSource(repo, "242df2cb83e2322b456990fb0ca3e30bd9209ed0")],
v"15.0.7" => [GitSource(repo, "4b96335944e70032f4dfa4807d9c5683eaabdae5")],
v"16.0.6" => [GitSource(repo, "b786f8c31eead5788ac8ca33ccedf29a4a7faedf")],
v"17.0.6" => [GitSource(repo, "27bbf0fa898b6945dbd097dfd1e87b4f4becb19a")],
v"18.1.7" => [GitSource(repo, "7515735e387c65cbb7821a78f122cfd89115a779")],
v"19.1.1" => [GitSource(repo, "90a976491d3847657396456e0e94d7dc48d35996")],
)

# These are the platforms we will build for by default, unless further
Expand Down

0 comments on commit c0cfe26

Please sign in to comment.