Browse Source

Update VS check when downloading pre-compiled LLVM packages.

Fixes https://github.com/mono/CppSharp/issues/1032.
pull/1033/head
João Matos 8 years ago committed by GitHub
parent
commit
5c70b418f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/scripts/LLVM.lua

2
build/scripts/LLVM.lua

@ -173,7 +173,7 @@ local archive_ext = use_7zip and ".7z" or ".tar.xz" @@ -173,7 +173,7 @@ local archive_ext = use_7zip and ".7z" or ".tar.xz"
function download_llvm()
local toolset = get_toolset_configuration_name()
if toolset == "vs2012" or toolset == "vs2013" then
if toolset == "vs2012" or toolset == "vs2013" or toolset == "vs2015" then
error("Pre-compiled LLVM packages for your VS version are not available.\n" ..
"Please upgrade to a newer VS version or compile LLVM manually.")
end

Loading…
Cancel
Save