diff options
author | Oliver Chang <ochang@chromium.org> | 2016-03-09 09:11:48 -0800 |
---|---|---|
committer | Oliver Chang <ochang@chromium.org> | 2016-03-09 09:11:48 -0800 |
commit | 2f4232d5b7e0c99b809b67d9ee30aaff3a7d84a5 (patch) | |
tree | 95ec8b1a0f113ce4acd90672093de61748c98a09 /build/standalone.gypi | |
parent | f089d470558fe70075478d497799aa8a617b9479 (diff) | |
download | pdfium-2f4232d5b7e0c99b809b67d9ee30aaff3a7d84a5.tar.xz |
Support clang-cl build on Windows.
R=thakis@chromium.org, tsepez@chromium.org
BUG=
Review URL: https://codereview.chromium.org/1774123005 .
Diffstat (limited to 'build/standalone.gypi')
-rw-r--r-- | build/standalone.gypi | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/build/standalone.gypi b/build/standalone.gypi index 1e7c0c0dc0..dd3e8e4fe3 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -318,6 +318,43 @@ }, { 'WarnAsError': 'true', }], + ['clang==1', { + 'AdditionalOptions': [ + # Don't warn about unused function parameters. + # (This is also used on other platforms.) + '-Wno-unused-parameter', + # Don't warn about the "struct foo f = {0};" initialization + # pattern. + '-Wno-missing-field-initializers', + + # Many files use intrinsics without including this header. + # TODO(hans): Fix those files, or move this to sub-GYPs. + '/FIIntrin.h', + + # TODO(hans): Make this list shorter eventually, http://crbug.com/504657 + '-Qunused-arguments', # http://crbug.com/504658 + '-Wno-microsoft-enum-value', # http://crbug.com/505296 + '-Wno-unknown-pragmas', # http://crbug.com/505314 + '-Wno-microsoft-cast', # http://crbug.com/550065 + + # TODO(ochang): Fix these properly eventually. + '-Wno-inconsistent-missing-override', + ], + }], + ['clang==1 and MSVS_VERSION == "2013"', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '-fmsc-version=1800', + ], + }, + }], + ['clang==1 and MSVS_VERSION == "2015"', { + 'VCCLCompilerTool': { + 'AdditionalOptions': [ + '-fmsc-version=1900', + ], + }, + }], ], }, 'VCLibrarianTool': { @@ -454,6 +491,15 @@ }], ], }], # OS=="linux" or OS=="mac" + ['OS=="win"', { + 'conditions': [ + ['clang==1', { + 'make_global_settings': [ + ['CC', '<(clang_dir)/bin/clang-cl'], + ], + }], + ], + }], # OS=="win" ["use_goma==1", { 'make_global_settings': [ ['CC_wrapper', '<(gomadir)/gomacc'], |