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

Side by Side Diff: gypfiles/standalone.gypi

Issue 2099843002: v8 clang/win: Stop passing /FIIntrin.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 ['clang==1', { 980 ['clang==1', {
981 'VCCLCompilerTool': { 981 'VCCLCompilerTool': {
982 'AdditionalOptions': [ 982 'AdditionalOptions': [
983 # Don't warn about unused function parameters. 983 # Don't warn about unused function parameters.
984 # (This is also used on other platforms.) 984 # (This is also used on other platforms.)
985 '-Wno-unused-parameter', 985 '-Wno-unused-parameter',
986 # Don't warn about the "struct foo f = {0};" initialization 986 # Don't warn about the "struct foo f = {0};" initialization
987 # pattern. 987 # pattern.
988 '-Wno-missing-field-initializers', 988 '-Wno-missing-field-initializers',
989 989
990 # Many files use intrinsics without including this header.
991 # TODO(hans): Fix those files, or move this to sub-GYPs.
992 '/FIIntrin.h',
993
994 # TODO(hans): Make this list shorter eventually, http://crbug. com/504657 990 # TODO(hans): Make this list shorter eventually, http://crbug. com/504657
995 '-Qunused-arguments', # http://crbug.com/504658 991 '-Qunused-arguments', # http://crbug.com/504658
996 '-Wno-microsoft-enum-value', # http://crbug.com/505296 992 '-Wno-microsoft-enum-value', # http://crbug.com/505296
997 '-Wno-unknown-pragmas', # http://crbug.com/505314 993 '-Wno-unknown-pragmas', # http://crbug.com/505314
998 '-Wno-microsoft-cast', # http://crbug.com/550065 994 '-Wno-microsoft-cast', # http://crbug.com/550065
999 ], 995 ],
1000 }, 996 },
1001 }], 997 }],
1002 ['clang==1 and MSVS_VERSION == "2013"', { 998 ['clang==1 and MSVS_VERSION == "2013"', {
1003 'VCCLCompilerTool': { 999 'VCCLCompilerTool': {
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 '-fsanitize=cfi-vcall', 1476 '-fsanitize=cfi-vcall',
1481 '-fsanitize=cfi-derived-cast', 1477 '-fsanitize=cfi-derived-cast',
1482 '-fsanitize=cfi-unrelated-cast', 1478 '-fsanitize=cfi-unrelated-cast',
1483 ], 1479 ],
1484 }], 1480 }],
1485 ], 1481 ],
1486 }, 1482 },
1487 }], 1483 }],
1488 ], 1484 ],
1489 } 1485 }
OLDNEW
« 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