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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 'test-platform-win32.cc', | 307 'test-platform-win32.cc', |
308 ], | 308 ], |
309 'msvs_settings': { | 309 'msvs_settings': { |
310 'VCCLCompilerTool': { | 310 'VCCLCompilerTool': { |
311 # MSVS wants this for gay-{precision,shortest}.cc. | 311 # MSVS wants this for gay-{precision,shortest}.cc. |
312 'AdditionalOptions': ['/bigobj'], | 312 'AdditionalOptions': ['/bigobj'], |
313 }, | 313 }, |
314 }, | 314 }, |
315 }], | 315 }], |
316 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ | 316 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ |
317 or v8_target_arch=="arm" or v8_target_arch=="arm64"', { | 317 or v8_target_arch=="arm" or v8_target_arch=="arm64" \ |
| 318 or v8_target_arch=="s390" or v8_target_arch=="s390x"', { |
318 # disable fmadd/fmsub so that expected results match generated code in | 319 # disable fmadd/fmsub so that expected results match generated code in |
319 # RunFloat64MulAndFloat64Add1 and friends. | 320 # RunFloat64MulAndFloat64Add1 and friends. |
320 'cflags': ['-ffp-contract=off'], | 321 'cflags': ['-ffp-contract=off'], |
321 }], | 322 }], |
322 ['OS=="aix"', { | 323 ['OS=="aix"', { |
323 'ldflags': [ '-Wl,-bbigtoc' ], | 324 'ldflags': [ '-Wl,-bbigtoc' ], |
324 }], | 325 }], |
325 ['component=="shared_library"', { | 326 ['component=="shared_library"', { |
326 # cctest can't be built against a shared library, so we need to | 327 # cctest can't be built against a shared library, so we need to |
327 # depend on the underlying static target in that case. | 328 # depend on the underlying static target in that case. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 '../../build/isolate.gypi', | 417 '../../build/isolate.gypi', |
417 ], | 418 ], |
418 'sources': [ | 419 'sources': [ |
419 'cctest.isolate', | 420 'cctest.isolate', |
420 ], | 421 ], |
421 }, | 422 }, |
422 ], | 423 ], |
423 }], | 424 }], |
424 ], | 425 ], |
425 } | 426 } |
OLD | NEW |