| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 }], | 285 }], |
| 286 ['v8_target_arch=="ia32"', { | 286 ['v8_target_arch=="ia32"', { |
| 287 'defines': [ | 287 'defines': [ |
| 288 'V8_TARGET_ARCH_IA32', | 288 'V8_TARGET_ARCH_IA32', |
| 289 ], | 289 ], |
| 290 }], # v8_target_arch=="ia32" | 290 }], # v8_target_arch=="ia32" |
| 291 ['v8_target_arch=="x87"', { | 291 ['v8_target_arch=="x87"', { |
| 292 'defines': [ | 292 'defines': [ |
| 293 'V8_TARGET_ARCH_X87', | 293 'V8_TARGET_ARCH_X87', |
| 294 ], | 294 ], |
| 295 'cflags': ['-mfpmath=387'], | 295 'cflags': ['-march=i586'], |
| 296 'ldflags': ['-mfpmath=387'], | |
| 297 }], # v8_target_arch=="x87" | 296 }], # v8_target_arch=="x87" |
| 298 ['v8_target_arch=="mips"', { | 297 ['v8_target_arch=="mips"', { |
| 299 'defines': [ | 298 'defines': [ |
| 300 'V8_TARGET_ARCH_MIPS', | 299 'V8_TARGET_ARCH_MIPS', |
| 301 ], | 300 ], |
| 302 'variables': { | 301 'variables': { |
| 303 'mipscompiler': '<!($(echo <(CXX)) -v 2>&1 | grep -q "^Target: mips" &
& echo "yes" || echo "no")', | 302 'mipscompiler': '<!($(echo <(CXX)) -v 2>&1 | grep -q "^Target: mips" &
& echo "yes" || echo "no")', |
| 304 }, | 303 }, |
| 305 'conditions': [ | 304 'conditions': [ |
| 306 ['mipscompiler=="yes"', { | 305 ['mipscompiler=="yes"', { |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 'OptimizeReferences': '2', | 807 'OptimizeReferences': '2', |
| 809 'EnableCOMDATFolding': '2', | 808 'EnableCOMDATFolding': '2', |
| 810 }, | 809 }, |
| 811 }, | 810 }, |
| 812 }], # OS=="win" | 811 }], # OS=="win" |
| 813 ], # conditions | 812 ], # conditions |
| 814 }, # Release | 813 }, # Release |
| 815 }, # configurations | 814 }, # configurations |
| 816 }, # target_defaults | 815 }, # target_defaults |
| 817 } | 816 } |
| OLD | NEW |