| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 # on the target. | 50 # on the target. |
| 51 'v8_can_use_vfp32dregs%': 'false', | 51 'v8_can_use_vfp32dregs%': 'false', |
| 52 'arm_test_noprobe%': 'off', | 52 'arm_test_noprobe%': 'off', |
| 53 | 53 |
| 54 # Similar to vfp but on MIPS. | 54 # Similar to vfp but on MIPS. |
| 55 'v8_can_use_fpu_instructions%': 'true', | 55 'v8_can_use_fpu_instructions%': 'true', |
| 56 | 56 |
| 57 # Similar to the ARM hard float ABI but on MIPS. | 57 # Similar to the ARM hard float ABI but on MIPS. |
| 58 'v8_use_mips_abi_hardfloat%': 'true', | 58 'v8_use_mips_abi_hardfloat%': 'true', |
| 59 | 59 |
| 60 # Print to stdout on Android. |
| 61 'v8_android_log_stdout%': 0, |
| 62 |
| 60 # Force disable libstdc++ debug mode. | 63 # Force disable libstdc++ debug mode. |
| 61 'disable_glibcxx_debug%': 0, | 64 'disable_glibcxx_debug%': 0, |
| 62 | 65 |
| 63 'v8_enable_backtrace%': 0, | 66 'v8_enable_backtrace%': 0, |
| 64 | 67 |
| 65 # Enable profiling support. Only required on Windows. | 68 # Enable profiling support. Only required on Windows. |
| 66 'v8_enable_prof%': 0, | 69 'v8_enable_prof%': 0, |
| 67 | 70 |
| 68 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 71 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
| 69 'v8_no_strict_aliasing%': 0, | 72 'v8_no_strict_aliasing%': 0, |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1075 ['_toolset=="target"', { | 1078 ['_toolset=="target"', { |
| 1076 'conditions': [ | 1079 'conditions': [ |
| 1077 ['target_cxx_is_biarch==1', { | 1080 ['target_cxx_is_biarch==1', { |
| 1078 'cflags': [ '-m64' ], | 1081 'cflags': [ '-m64' ], |
| 1079 'ldflags': [ '-m64' ], | 1082 'ldflags': [ '-m64' ], |
| 1080 }], | 1083 }], |
| 1081 ] | 1084 ] |
| 1082 }], | 1085 }], |
| 1083 ], | 1086 ], |
| 1084 }], | 1087 }], |
| 1088 ['OS=="android" and v8_android_log_stdout==1', { |
| 1089 'defines': [ |
| 1090 'V8_ANDROID_LOG_STDOUT', |
| 1091 ], |
| 1092 }], |
| 1085 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 1093 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 1086 or OS=="netbsd" or OS=="qnx" or OS=="aix"', { | 1094 or OS=="netbsd" or OS=="qnx" or OS=="aix"', { |
| 1087 'conditions': [ | 1095 'conditions': [ |
| 1088 [ 'v8_no_strict_aliasing==1', { | 1096 [ 'v8_no_strict_aliasing==1', { |
| 1089 'cflags': [ '-fno-strict-aliasing' ], | 1097 'cflags': [ '-fno-strict-aliasing' ], |
| 1090 }], | 1098 }], |
| 1091 ], # conditions | 1099 ], # conditions |
| 1092 }], | 1100 }], |
| 1093 ['OS=="solaris"', { | 1101 ['OS=="solaris"', { |
| 1094 'defines': [ '__C99FEATURES__=1' ], # isinf() etc. | 1102 'defines': [ '__C99FEATURES__=1' ], # isinf() etc. |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 ], | 1411 ], |
| 1404 }, | 1412 }, |
| 1405 'Release_x64': { | 1413 'Release_x64': { |
| 1406 'inherit_from': ['ReleaseBase'], | 1414 'inherit_from': ['ReleaseBase'], |
| 1407 }, | 1415 }, |
| 1408 }], | 1416 }], |
| 1409 ], | 1417 ], |
| 1410 }, # configurations | 1418 }, # configurations |
| 1411 }, # target_defaults | 1419 }, # target_defaults |
| 1412 } | 1420 } |
| OLD | NEW |