| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 ], | 300 ], |
| 301 'cflags': [ | 301 'cflags': [ |
| 302 '-fomit-frame-pointer', | 302 '-fomit-frame-pointer', |
| 303 '-O3', | 303 '-O3', |
| 304 ], | 304 ], |
| 305 'conditions': [ | 305 'conditions': [ |
| 306 [ 'gcc_version=="44"', { | 306 [ 'gcc_version=="44"', { |
| 307 'cflags': [ | 307 'cflags': [ |
| 308 # Avoid gcc 4.4 strict aliasing issues in dtoa.c | 308 # Avoid gcc 4.4 strict aliasing issues in dtoa.c |
| 309 '-fno-strict-aliasing', | 309 '-fno-strict-aliasing', |
| 310 # Avoid gcc 4.4 mksnapshot segfault. | |
| 311 '-fno-tree-vectorize', | |
| 312 # Avoid crashes with gcc 4.4 in the v8 test suite. | 310 # Avoid crashes with gcc 4.4 in the v8 test suite. |
| 313 '-fno-tree-vrp', | 311 '-fno-tree-vrp', |
| 314 ], | 312 ], |
| 315 }], | 313 }], |
| 316 ], | 314 ], |
| 317 'cflags_cc': [ | 315 'cflags_cc': [ |
| 318 '-fno-rtti', | 316 '-fno-rtti', |
| 319 ], | 317 ], |
| 320 }], | 318 }], |
| 321 ['OS=="win"', { | 319 ['OS=="win"', { |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 ], | 732 ], |
| 735 'msvs_settings': { | 733 'msvs_settings': { |
| 736 'VCLinkerTool': { | 734 'VCLinkerTool': { |
| 737 'AdditionalOptions': '/IGNORE:4221 /NXCOMPAT', | 735 'AdditionalOptions': '/IGNORE:4221 /NXCOMPAT', |
| 738 }, | 736 }, |
| 739 }, | 737 }, |
| 740 }, | 738 }, |
| 741 }], | 739 }], |
| 742 ], | 740 ], |
| 743 } | 741 } |
| OLD | NEW |