diff options
author | 2020-03-19 20:51:21 +0100 | |
---|---|---|
committer | 2020-03-19 20:51:21 +0100 | |
commit | 931aee1b54c5315401bf316745a47a0df996b1ac (patch) | |
tree | 1f3c2dfc7f2ddfb000354f9f38e45cb1079a84d3 /scripts/src | |
parent | a0a6637f7f550842f2d9091b94d79f70555d3ff5 (diff) |
Roll back no longer needed /ZI workaround
It has been fixed as of Visual Studio 2019 16.5
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/tools.lua | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/src/tools.lua b/scripts/src/tools.lua index add62c0f84b..283b53f1b2c 100644 --- a/scripts/src/tools.lua +++ b/scripts/src/tools.lua @@ -133,15 +133,6 @@ files { configuration { "mingw*" or "vs*" } targetextension ".exe" --- workaround for https://developercommunity.visualstudio.com/content/problem/752372/vs2019-v1631-c-internal-compiler-error-when-zi-opt.html --- should be fixed in 16.5 -configuration { "Debug", "vs2019" } - if _OPTIONS["vs"]==nil then - flags { - "NoEditAndContinue", - } - end - configuration { } strip() @@ -718,15 +709,6 @@ files { configuration { "mingw*" or "vs*" } targetextension ".exe" --- workaround for https://developercommunity.visualstudio.com/content/problem/752372/vs2019-v1631-c-internal-compiler-error-when-zi-opt.html --- should be fixed in 16.5 -configuration { "Debug", "vs2019" } - if _OPTIONS["vs"]==nil then - flags { - "NoEditAndContinue", - } - end - configuration { } strip() |