| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 'target_conditions': [ | 456 'target_conditions': [ |
| 457 ['_toolset=="target"', { | 457 ['_toolset=="target"', { |
| 458 'cflags+': [ | 458 'cflags+': [ |
| 459 '-Wno-format-pedantic', | 459 '-Wno-format-pedantic', |
| 460 ], | 460 ], |
| 461 }], | 461 }], |
| 462 ], | 462 ], |
| 463 }], | 463 }], |
| 464 ], | 464 ], |
| 465 }], | 465 }], |
| 466 ['clang==1 and target_arch=="ia32"', { | |
| 467 'cflags': ['-mstack-alignment=16', '-mstackrealign'], | |
| 468 }], | |
| 469 ['fastbuild!=0', { | 466 ['fastbuild!=0', { |
| 470 'conditions': [ | 467 'conditions': [ |
| 471 ['OS=="win" and fastbuild==1', { | 468 ['OS=="win" and fastbuild==1', { |
| 472 'msvs_settings': { | 469 'msvs_settings': { |
| 473 'VCLinkerTool': { | 470 'VCLinkerTool': { |
| 474 # This tells the linker to generate .pdbs, so that | 471 # This tells the linker to generate .pdbs, so that |
| 475 # we can get meaningful stack traces. | 472 # we can get meaningful stack traces. |
| 476 'GenerateDebugInformation': 'true', | 473 'GenerateDebugInformation': 'true', |
| 477 }, | 474 }, |
| 478 'VCCLCompilerTool': { | 475 'VCCLCompilerTool': { |
| (...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 '-fsanitize=cfi-vcall', | 1439 '-fsanitize=cfi-vcall', |
| 1443 '-fsanitize=cfi-derived-cast', | 1440 '-fsanitize=cfi-derived-cast', |
| 1444 '-fsanitize=cfi-unrelated-cast', | 1441 '-fsanitize=cfi-unrelated-cast', |
| 1445 ], | 1442 ], |
| 1446 }], | 1443 }], |
| 1447 ], | 1444 ], |
| 1448 }, | 1445 }, |
| 1449 }], | 1446 }], |
| 1450 ], | 1447 ], |
| 1451 } | 1448 } |
| OLD | NEW |