Replace /GS- with NoBufferSecurityCheck
This is how it's supposed to be done. Stops this from being spammed: cl : command line warning D9025: overriding '/GS' with '/GS-' [D:\a\xenia-canary\xenia-canary\build\glslang-spirv.vcxproj]
This commit is contained in:
parent
3acf3fdcd1
commit
d94940f850
|
@ -65,7 +65,6 @@ filter({"configurations:Checked", "platforms:Linux"})
|
|||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Gw",
|
||||
"/GS-",
|
||||
"/Ob3",
|
||||
})
|
||||
|
||||
|
@ -91,6 +90,7 @@ filter("configurations:Release")
|
|||
inlining("Auto")
|
||||
flags({
|
||||
"LinkTimeOptimization",
|
||||
"NoBufferSecurityCheck",
|
||||
})
|
||||
-- Not using floatingpoint("Fast") - NaN checks are used in some places
|
||||
-- (though rarely), overall preferable to avoid any functional differences
|
||||
|
|
Loading…
Reference in New Issue