Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Rootfs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,11 @@ const available_gcc_builds = [
# GCCBuild(v"11.0.0-iains", (libgfortran_version = v"5", libstdcxx_version = v"3.4.28", cxxstring_abi = "cxx11")),
GCCBuild(v"12.0.1-iains", (libgfortran_version = v"5", libstdcxx_version = v"3.4.29", cxxstring_abi = "cxx11")),
]

# Since we read the Artifacts.toml at compile time, we need to make sure that we-reprecompile
# if the file changes - let Julia know.
Base.include_dependency(joinpath(dirname(@__DIR__), "Artifacts.toml"))

const available_llvm_builds = LLVMBuild.(get_available_builds("LLVMBootstrap."))

const available_go_builds = GoBuild.(get_available_builds("Go."))
Expand Down