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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 ], | 421 ], |
422 'msvs_settings': { | 422 'msvs_settings': { |
423 'VCCLCompilerTool': { | 423 'VCCLCompilerTool': { |
424 # MSVS wants this for gay-{precision,shortest}.cc. | 424 # MSVS wants this for gay-{precision,shortest}.cc. |
425 'AdditionalOptions': ['/bigobj'], | 425 'AdditionalOptions': ['/bigobj'], |
426 }, | 426 }, |
427 }, | 427 }, |
428 }], | 428 }], |
429 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ | 429 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ |
430 or v8_target_arch=="arm" or v8_target_arch=="arm64" \ | 430 or v8_target_arch=="arm" or v8_target_arch=="arm64" \ |
431 or v8_target_arch=="s390" or v8_target_arch=="s390x"', { | 431 or v8_target_arch=="s390" or v8_target_arch=="s390x" \ |
| 432 or v8_target_arch=="mips" or v8_target_arch=="mips64" \ |
| 433 or v8_target_arch=="mipsel" or v8_target_arch=="mips64el"', { |
432 # disable fmadd/fmsub so that expected results match generated code in | 434 # disable fmadd/fmsub so that expected results match generated code in |
433 # RunFloat64MulAndFloat64Add1 and friends. | 435 # RunFloat64MulAndFloat64Add1 and friends. |
434 'cflags': ['-ffp-contract=off'], | 436 'cflags': ['-ffp-contract=off'], |
435 }], | 437 }], |
436 ['OS=="aix"', { | 438 ['OS=="aix"', { |
437 'ldflags': [ '-Wl,-bbigtoc' ], | 439 'ldflags': [ '-Wl,-bbigtoc' ], |
438 }], | 440 }], |
439 ['component=="shared_library"', { | 441 ['component=="shared_library"', { |
440 # cctest can't be built against a shared library, so we need to | 442 # cctest can't be built against a shared library, so we need to |
441 # depend on the underlying static target in that case. | 443 # depend on the underlying static target in that case. |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 '../../gypfiles/isolate.gypi', | 527 '../../gypfiles/isolate.gypi', |
526 ], | 528 ], |
527 'sources': [ | 529 'sources': [ |
528 'cctest.isolate', | 530 'cctest.isolate', |
529 ], | 531 ], |
530 }, | 532 }, |
531 ], | 533 ], |
532 }], | 534 }], |
533 ], | 535 ], |
534 } | 536 } |
OLD | NEW |