summaryrefslogtreecommitdiffstats
path: root/build/config/win
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2015-11-20 16:26:32 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-21 00:27:31 +0000
commit7ba9b478144998dc08029cddf61e8a48745fef9a (patch)
tree4ef2e59fc6c18b9c4e863a26093f9dbd27d756ab /build/config/win
parenteb74216daa0f0606140d53cf36494b51b2b2dc8f (diff)
downloadchromium_src-7ba9b478144998dc08029cddf61e8a48745fef9a.zip
chromium_src-7ba9b478144998dc08029cddf61e8a48745fef9a.tar.gz
chromium_src-7ba9b478144998dc08029cddf61e8a48745fef9a.tar.bz2
win gn: Use /safeseh, not /SAFESEH
[14421->5901/20355 ~33] ASM obj/third_party/crashpad/crashpad/util/util/capture_context.obj MASM : warning A4018:invalid command-line option : /SAFESEH MASM : warning A4018:invalid command-line option : /SFESEH MASM : warning A4018:invalid command-line option : /SESEH MASM : warning A4018:invalid command-line option : /SSEH MASM : warning A4018:invalid command-line option : /SEH MASM : warning A4018:invalid command-line option : /SH BUG=546288 R=brettw@chromium.org Review URL: https://codereview.chromium.org/1470483002 Cr-Commit-Position: refs/heads/master@{#360960}
Diffstat (limited to 'build/config/win')
-rw-r--r--build/config/win/BUILD.gn7
1 files changed, 4 insertions, 3 deletions
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index daa0774..dec7a5a 100644
--- a/build/config/win/BUILD.gn
+++ b/build/config/win/BUILD.gn
@@ -13,11 +13,12 @@ assert(is_win)
# Windows-only.
config("compiler") {
asmflags = [
- # When /SAFESEH is specified, the linker will only produce an image if it
+ # 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",
+ # valid for the image. Note that /SAFESEH isn't accepted on the command
+ # line, only /safeseh.
+ "/safeseh",
]
cflags = [