| 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 ], | 700 ], |
| 701 }, # target_defaults | 701 }, # target_defaults |
| 702 }], # OS=="mac" | 702 }], # OS=="mac" |
| 703 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 703 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 704 or OS=="netbsd" or OS=="aix"', { | 704 or OS=="netbsd" or OS=="aix"', { |
| 705 'target_defaults': { | 705 'target_defaults': { |
| 706 'cflags': [ | 706 'cflags': [ |
| 707 '-Wall', | 707 '-Wall', |
| 708 '<(werror)', | 708 '<(werror)', |
| 709 '-Wno-unused-parameter', | 709 '-Wno-unused-parameter', |
| 710 '-Wno-long-long', | |
| 711 '-pthread', | 710 '-pthread', |
| 712 '-pedantic', | 711 '-pedantic', |
| 713 '-Wmissing-field-initializers', | 712 '-Wmissing-field-initializers', |
| 714 '-Wno-gnu-zero-variadic-macro-arguments', | 713 '-Wno-gnu-zero-variadic-macro-arguments', |
| 715 ], | 714 ], |
| 716 'cflags_cc': [ | 715 'cflags_cc': [ |
| 717 '-Wnon-virtual-dtor', | 716 '-Wnon-virtual-dtor', |
| 718 '-fno-exceptions', | 717 '-fno-exceptions', |
| 719 '-fno-rtti', | 718 '-fno-rtti', |
| 720 '-std=gnu++11', | 719 '-std=gnu++11', |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 '-fsanitize=cfi-vcall', | 1450 '-fsanitize=cfi-vcall', |
| 1452 '-fsanitize=cfi-derived-cast', | 1451 '-fsanitize=cfi-derived-cast', |
| 1453 '-fsanitize=cfi-unrelated-cast', | 1452 '-fsanitize=cfi-unrelated-cast', |
| 1454 ], | 1453 ], |
| 1455 }], | 1454 }], |
| 1456 ], | 1455 ], |
| 1457 }, | 1456 }, |
| 1458 }], | 1457 }], |
| 1459 ], | 1458 ], |
| 1460 } | 1459 } |
| OLD | NEW |