Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update llvm v14 #62

Merged
merged 1 commit into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
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
41 changes: 37 additions & 4 deletions toolchains/compilers/llvm/impl/llvm_versions.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

_WINDOWS = {
_WINDOWS_11 = {
"full_version": "11.0",
"remote_compiler": {
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-11.1.0/LLVM-11.1.0-win64.exe",
Expand All @@ -38,9 +38,9 @@ _PLATFORM_SPECIFIC_CONFIGS_11 = {
"strip_prefix": "clang+llvm-11.0.1-x86_64-linux-gnu-ubuntu-16.04",
},
},
"windows": _WINDOWS,
"windows server 2019": _WINDOWS,
"windows 10": _WINDOWS,
"windows": _WINDOWS_11,
"windows server 2019": _WINDOWS_11,
"windows 10": _WINDOWS_11,
"mac os x": {
"full_version": "11.0",
"remote_compiler": {
Expand All @@ -51,8 +51,41 @@ _PLATFORM_SPECIFIC_CONFIGS_11 = {
},
}

_WINDOWS_14 = {
"full_version": "14.0",
"remote_compiler": {
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/LLVM-14.0.0-win64.exe",
"sha256": "15d52a38436417843a56883730a7e358a8afa0510a003596ee23963339a913f7",
"strip_prefix": "",
},
}

_PLATFORM_SPECIFIC_CONFIGS_14 = {
"linux": {
"full_version": "14.0",
"remote_compiler": {
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz",
"sha256": "61582215dafafb7b576ea30cc136be92c877ba1f1c31ddbbd372d6d65622fef5",
"strip_prefix": "clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04",
},
},
"windows": _WINDOWS_14,
"windows server 2019": _WINDOWS_14,
"windows 10": _WINDOWS_14,
"mac os x": {
"full_version": "14.0",
"remote_compiler": {
"url": "https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-apple-darwin.tar.xz",
"sha256": "cf5af0f32d78dcf4413ef6966abbfd5b1445fe80bba57f2ff8a08f77e672b9b3",
"strip_prefix": "clang+llvm-14.0.0-x86_64-apple-darwin",
},
},
}


TOOLCHAIN_VERSIONS = {
"11": _PLATFORM_SPECIFIC_CONFIGS_11,
"14": _PLATFORM_SPECIFIC_CONFIGS_14,
}

def get_platform_specific_config(version, os_name):
Expand Down
4 changes: 2 additions & 2 deletions toolchains/compilers/llvm/llvm_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ llvm_repository = repository_rule(
_llvm_repository_impl,
attrs = {
"version": attr.string(
default = "11",
doc = "LLVM version, version 11 currently only version supported",
default = "14",
doc = "LLVM version, version 11 and 14 currently only version supported",
values = TOOLCHAIN_VERSIONS.keys(),
),
"sysroot": attr.label(
Expand Down