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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 ], | 383 ], |
384 'xcode_settings': { | 384 'xcode_settings': { |
385 'ARCHS': [ 'x86_64' ], | 385 'ARCHS': [ 'x86_64' ], |
386 }, | 386 }, |
387 'msvs_settings': { | 387 'msvs_settings': { |
388 'VCLinkerTool': { | 388 'VCLinkerTool': { |
389 'StackReserveSize': '2097152', | 389 'StackReserveSize': '2097152', |
390 }, | 390 }, |
391 }, | 391 }, |
392 'msvs_configuration_platform': 'x64', | 392 'msvs_configuration_platform': 'x64', |
393 }], # v8_target_arch=="x64" | 393 }], # v8_target_arch=="x32" |
| 394 ['v8_target_arch=="x32"', { |
| 395 'defines': [ |
| 396 'V8_TARGET_ARCH_X32', |
| 397 ], |
| 398 'cflags': [ |
| 399 '-mx32', |
| 400 '-Wno-long-long', |
| 401 ], |
| 402 'ldflags': [ |
| 403 '-mx32', |
| 404 ], |
| 405 }], # v8_target_arch=="x32" |
394 ['v8_compress_startup_data=="bz2"', { | 406 ['v8_compress_startup_data=="bz2"', { |
395 'defines': [ | 407 'defines': [ |
396 'COMPRESS_STARTUP_DATA_BZ2', | 408 'COMPRESS_STARTUP_DATA_BZ2', |
397 ], | 409 ], |
398 }], | 410 }], |
399 ['OS=="win"', { | 411 ['OS=="win"', { |
400 'defines': [ | 412 'defines': [ |
401 'WIN32', | 413 'WIN32', |
402 ], | 414 ], |
403 'msvs_configuration_attributes': { | 415 'msvs_configuration_attributes': { |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 'OptimizeReferences': '2', | 641 'OptimizeReferences': '2', |
630 'EnableCOMDATFolding': '2', | 642 'EnableCOMDATFolding': '2', |
631 }, | 643 }, |
632 }, | 644 }, |
633 }], # OS=="win" | 645 }], # OS=="win" |
634 ], # conditions | 646 ], # conditions |
635 }, # Release | 647 }, # Release |
636 }, # configurations | 648 }, # configurations |
637 }, # target_defaults | 649 }, # target_defaults |
638 } | 650 } |
OLD | NEW |