Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(417)

Unified Diff: build/config/win/BUILD.gn

Issue 1470483002: win gn: Use /safeseh, not /SAFESEH (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: don't change linker Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/win/BUILD.gn
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index daa07741c8eb5887a7a4002a276db0b48e822b29..dec7a5abfb42305d2e0b44e85b3e36ec34a49dd1 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 = [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698