summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/toolchain.lua
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2026-04-08 17:14:05 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2026-04-08 17:21:51 +0700
commitf52420dfd9020ed60e3ebac971804e042c76c286 (patch)
treec46c22b01ce4e14e8b361e861e5e5eec4bc4a415 /scripts/toolchain.lua
parent7ad8ac090ce2102aa7af7f6587a43994d207c44a (diff)
build: retire superseded Intel C++ Compiler target
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r--scripts/toolchain.lua8
1 files changed, 1 insertions, 7 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index d00f426ba9a..d0e4158c5e2 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -41,8 +41,7 @@ newoption {
value = "toolset",
description = "Choose VS toolset",
allowed = {
- { "intel-15", "Intel C++ Compiler XE 15.0" },
- { "clangcl", "Visual Studio 2019 using Clang/LLVM" },
+ { "clangcl", "Visual Studio using Clang/LLVM" },
},
}
@@ -207,11 +206,6 @@ function toolchain(_buildDir, _subDir)
premake.vstudio.toolset = ("ClangCL")
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-clang")
end
-
- if "intel-15" == _OPTIONS["vs"] then
- premake.vstudio.toolset = "Intel C++ Compiler XE 15.0"
- location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-intel")
- end
end
if (_OPTIONS["CC"] ~= nil) then