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