Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: test/cctest/cctest.gyp

Issue 1744493003: [arm64] Prevent the compiler to use fmadd/fmsub while compiling cctest. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'sources': [ 288 'sources': [
289 'test-platform-win32.cc', 289 'test-platform-win32.cc',
290 ], 290 ],
291 'msvs_settings': { 291 'msvs_settings': {
292 'VCCLCompilerTool': { 292 'VCCLCompilerTool': {
293 # MSVS wants this for gay-{precision,shortest}.cc. 293 # MSVS wants this for gay-{precision,shortest}.cc.
294 'AdditionalOptions': ['/bigobj'], 294 'AdditionalOptions': ['/bigobj'],
295 }, 295 },
296 }, 296 },
297 }], 297 }],
298 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { 298 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \
299 or v8_target_arch=="arm" or v8_target_arch=="arm64"', {
299 # disable fmadd/fmsub so that expected results match generated code in 300 # disable fmadd/fmsub so that expected results match generated code in
300 # RunFloat64MulAndFloat64Add1 and friends. 301 # RunFloat64MulAndFloat64Add1 and friends.
301 'cflags': ['-ffp-contract=off'], 302 'cflags': ['-ffp-contract=off'],
302 }], 303 }],
303 ['OS=="aix"', { 304 ['OS=="aix"', {
304 'ldflags': [ '-Wl,-bbigtoc' ], 305 'ldflags': [ '-Wl,-bbigtoc' ],
305 }], 306 }],
306 ['component=="shared_library"', { 307 ['component=="shared_library"', {
307 # cctest can't be built against a shared library, so we need to 308 # cctest can't be built against a shared library, so we need to
308 # depend on the underlying static target in that case. 309 # depend on the underlying static target in that case.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 '../../build/isolate.gypi', 398 '../../build/isolate.gypi',
398 ], 399 ],
399 'sources': [ 400 'sources': [
400 'cctest.isolate', 401 'cctest.isolate',
401 ], 402 ],
402 }, 403 },
403 ], 404 ],
404 }], 405 }],
405 ], 406 ],
406 } 407 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698