Chromium Code Reviews| Index: build/config/win/BUILD.gn |
| diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn |
| index a93ed30daa3cfa23bc18911b193eb64dbccf1482..23a30e694ef9e2af6b80bac27c5e904311ab1658 100644 |
| --- a/build/config/win/BUILD.gn |
| +++ b/build/config/win/BUILD.gn |
| @@ -129,6 +129,14 @@ config("sdk") { |
| # This is required for ATL to use XP-safe versions of its functions. |
| "_USING_V110_SDK71_", |
| ] |
| + |
| + asmflags = [ |
| + # When /SAFESEH is specified, the linker will only produce an image if it |
| + # can also produce a table of the image's safe exception handlers. This |
| + # table specifies for the operating system which exception handlers are |
| + # valid for the image. |
| + "/SAFESEH", |
|
brettw
2015/09/28 19:44:52
This didn't seem to come from anywhere else. I'm a
Bons
2015/09/28 20:15:39
It came from the windows toolchain config where it
|
| + ] |
| } |
| # Sets the default Windows build version. This is separated because some |