OLD | NEW |
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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 'inherit_from': ['Debug'], | 496 'inherit_from': ['Debug'], |
497 }, | 497 }, |
498 'Release_x64': { | 498 'Release_x64': { |
499 'inherit_from': ['Release'], | 499 'inherit_from': ['Release'], |
500 }, | 500 }, |
501 }], | 501 }], |
502 ], | 502 ], |
503 }, | 503 }, |
504 'conditions':[ | 504 'conditions':[ |
505 ['clang==0', { | 505 ['clang==0', { |
506 'cflags+': ['-Wno-sign-compare',], | 506 'cflags+': [ |
| 507 '-Wno-sign-compare', |
| 508 '-Wno-uninitialized', |
| 509 ], |
507 }], | 510 }], |
508 ['clang==1 or host_clang==1', { | 511 ['clang==1 or host_clang==1', { |
509 # This is here so that all files get recompiled after a clang roll and | 512 # This is here so that all files get recompiled after a clang roll and |
510 # when turning clang on or off. | 513 # when turning clang on or off. |
511 # (defines are passed via the command line, and build systems rebuild | 514 # (defines are passed via the command line, and build systems rebuild |
512 # things when their commandline changes). Nothing should ever read this | 515 # things when their commandline changes). Nothing should ever read this |
513 # define. | 516 # define. |
514 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/up
date.py --print-revision)'], | 517 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/up
date.py --print-revision)'], |
515 }], | 518 }], |
516 ['clang==1 and target_arch=="ia32"', { | 519 ['clang==1 and target_arch=="ia32"', { |
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1510 '-fsanitize=cfi-vcall', | 1513 '-fsanitize=cfi-vcall', |
1511 '-fsanitize=cfi-derived-cast', | 1514 '-fsanitize=cfi-derived-cast', |
1512 '-fsanitize=cfi-unrelated-cast', | 1515 '-fsanitize=cfi-unrelated-cast', |
1513 ], | 1516 ], |
1514 }], | 1517 }], |
1515 ], | 1518 ], |
1516 }, | 1519 }, |
1517 }], | 1520 }], |
1518 ], | 1521 ], |
1519 } | 1522 } |
OLD | NEW |