• Home
  • Raw
  • Download

Lines Matching full:variables

881     o['variables']['llvm_version'] = '0.0'
884 o['variables']['nasm_version'] = nasm_version
886 o['variables']['openssl_no_asm'] = 1
912 o['variables']['llvm_version'] = get_llvm_version(CC) if is_clang else '0.0'
920 o['variables']['xcode_version'] = get_xcode_version(CC)
922 o['variables']['gas_version'] = get_gas_version(CC)
1033 o['variables']['arm_version'] = '7'
1035 o['variables']['arm_version'] = '6' if is_arch_armv6() else 'default'
1037 o['variables']['arm_thumb'] = 0 # -marm
1038 o['variables']['arm_float_abi'] = arm_float_abi
1042 o['variables']['arm_version'] = '7'
1044 o['variables']['arm_fpu'] = options.arm_fpu or arm_fpu
1049 o['variables']['v8_can_use_fpu_instructions'] = b(can_use_fpu_instructions)
1050 o['variables']['v8_use_mips_abi_hardfloat'] = b(can_use_fpu_instructions)
1051 o['variables']['mips_arch_variant'] = options.mips_arch_variant
1052 o['variables']['mips_fpu_mode'] = options.mips_fpu_mode
1054 o['variables']['v8_host_byteorder'] = host_byteorder
1073 o['variables']['node_library_files'] = SearchFiles('lib', 'js')
1077 o['variables']['OS'] = 'android'
1078 o['variables']['node_prefix'] = options.prefix
1079 o['variables']['node_install_npm'] = b(not options.without_npm)
1080 o['variables']['node_install_corepack'] = b(not options.without_corepack)
1081 o['variables']['debug_node'] = b(options.debug_node)
1083 o['variables']['error_on_warn'] = b(options.error_on_warn)
1094 o['variables']['host_arch'] = host_arch
1095 o['variables']['target_arch'] = target_arch
1096 o['variables']['node_byteorder'] = sys.byteorder
1106 o['variables']['want_separate_host_toolset'] = int(cross_compiling)
1109 o['variables']['node_use_node_snapshot'] = 'false'
1111 o['variables']['node_use_node_snapshot'] = b(
1115 o['variables']['node_use_node_code_cache'] = 'false'
1118 o['variables']['node_use_node_code_cache'] = b(
1127 o['variables']['node_target_type'] = 'static_library'
1149 o['variables']['enable_pgo_generate'] = b(options.enable_pgo_generate)
1150 o['variables']['enable_pgo_use'] = b(options.enable_pgo_use)
1166 o['variables']['enable_lto'] = b(options.enable_lto)
1177 o['variables']['node_use_dtrace'] = b(use_dtrace)
1182 o['variables']['node_use_dtrace'] = 'false'
1196 o['variables']['node_use_etw'] = b(not options.without_etw)
1200 o['variables']['node_use_etw'] = 'false'
1202 o['variables']['node_with_ltcg'] = b(options.with_ltcg)
1207 o['variables']['node_tag'] = '-' + options.tag
1209 o['variables']['node_tag'] = ''
1211 o['variables']['node_release_urlbase'] = options.release_urlbase or ''
1214 o['variables']['node_v8_options'] = options.v8_options.replace('"', '\\"')
1217 o['variables']['node_target_type'] = 'static_library'
1219 o['variables']['node_debug_lib'] = b(options.node_debug_lib)
1222 o['variables']['debug_nghttp2'] = 1
1224 o['variables']['debug_nghttp2'] = 'false'
1226 o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
1228 o['variables']['node_shared'] = b(options.shared)
1242 o['variables']['node_module_version'] = int(node_module_version)
1243 o['variables']['shlib_suffix'] = shlib_suffix
1246 o['variables']['library_files'] = options.linked_module
1248 o['variables']['asan'] = int(options.enable_asan or 0)
1251 o['variables']['coverage'] = 'true'
1253 o['variables']['coverage'] = 'false'
1256 o['variables']['node_target_type'] = 'shared_library'
1258 o['variables']['node_target_type'] = 'static_library'
1260 o['variables']['node_target_type'] = 'executable'
1264 o['variables']['node_builtin_modules_path'] = options.node_builtin_modules_path
1268 output['variables']['napi_build_version'] = version
1272 output['variables']['node_' + shared_lib] = b(getattr(options, shared_lib))
1306 o['variables']['v8_enable_lite_mode'] = 1 if options.v8_lite_mode else 0
1307 o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
1308 o['variables']['v8_no_strict_aliasing'] = 1 # Work around compiler bugs.
1309 o['variables']['v8_optimized_debug'] = 0 if options.v8_non_optimized_debug else 1
1310 o['variables']['dcheck_always_on'] = 1 if options.v8_with_dchecks else 0
1311 o['variables']['v8_enable_object_print'] = 1 if options.v8_enable_object_print else 0
1312 o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
1313 …o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async h…
1314 o['variables']['v8_use_siphash'] = 0 if options.without_siphash else 1
1315 o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0
1316 …o['variables']['v8_enable_31bit_smis_on_64bit_arch'] = 1 if options.enable_pointer_compression els…
1317 o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
1318 o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)
1319 o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)
1320 o['variables']['force_dynamic_crt'] = 1 if options.shared else 0
1321 o['variables']['node_enable_d8'] = b(options.enable_d8)
1323 o['variables']['test_isolation_mode'] = 'noop' # Needed by d8.gyp.
1333 o['variables']['build_v8_with_gn'] = b(options.build_v8_with_gn)
1337 variables = o['variables']
1338 variables['node_use_openssl'] = b(not options.without_ssl)
1339 variables['node_shared_openssl'] = b(options.shared_openssl)
1340 variables['openssl_is_fips'] = b(options.openssl_is_fips)
1341 variables['openssl_fips'] = ''
1344 variables['openssl_no_asm'] = 1
1364 variables['openssl_system_ca_path'] = options.openssl_system_ca_path
1365 variables['node_without_node_options'] = b(options.without_node_options)
1369 variables['openssl_default_cipher_list'] = \
1373 is_x86 = 'x64' in variables['target_arch'] or 'ia32' in variables['target_arch']
1378 …('gas_version' in variables and StrictVersion(variables['gas_version']) >= StrictVersion('2.23')) …
1379 …('xcode_version' in variables and StrictVersion(variables['xcode_version']) >= StrictVersion('5.0'…
1380 …('llvm_version' in variables and StrictVersion(variables['llvm_version']) >= StrictVersion('3.3'))…
1381 …('nasm_version' in variables and StrictVersion(variables['nasm_version']) >= StrictVersion('2.10'))
1479 'variables': {}
1488 o['variables']['icu_small'] = b(False)
1497 o['variables']['v8_enable_i18n_support'] = 1
1499 o['variables']['icu_gyp_path'] = options.with_icu_path
1504 o['variables']['v8_enable_i18n_support'] = 0
1508 o['variables']['v8_enable_i18n_support'] = 1
1509 o['variables']['icu_small'] = b(True)
1512 o['variables']['icu_locales'] = ','.join(str(loc) for loc in locs)
1514 o['variables']['icu_default_data'] = options.with_icu_default_data_dir or ''
1517 o['variables']['v8_enable_i18n_support'] = 1
1520 o['variables']['v8_enable_i18n_support'] = 1
1527 o['variables']['icu_ver_major'] = icu_ver_major
1540 o['variables']['icu_gyp_path'] = 'tools/icu/icu-system.gyp'
1575 icu_config['variables']['icu_full_canned'] = 1
1618 o['variables']['icu_gyp_path'] = 'tools/icu/icu-generic.gyp'
1620 o['variables']['icu_path'] = icu_full_path
1652 o['variables']['icu_ver_major'] = icu_ver_major
1653 o['variables']['icu_endianness'] = icu_endianness
1689 o['variables']['icu_data_in'] = icu_data_in
1706 …icu_config['variables'][var] = glob_to_var('tools/icu', path, 'patches/%s/source/%s' % (icu_ver_ma…
1716 icu_config['variables']['icu_asm_ext'] = 'obj'
1717 icu_config['variables']['icu_asm_opts'] = [ '-o ' ]
1719 icu_config['variables']['icu_asm_ext'] = 'c'
1720 icu_config['variables']['icu_asm_opts'] = []
1722 icu_config['variables']['icu_asm_ext'] = 'S'
1723 icu_config['variables']['icu_asm_opts'] = [ '-a', 'gcc-darwin' ]
1725 icu_config['variables']['icu_asm_ext'] = 'S'
1726 icu_config['variables']['icu_asm_opts'] = [ '-a', 'xlc' ]
1729 icu_config['variables']['icu_asm_ext'] = 'S'
1730 icu_config['variables']['icu_asm_opts'] = [ '-a', 'gcc' ]
1741 o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
1763 o['variables']['node_section_ordering_info'] = os.path.realpath(
1766 o['variables']['node_section_ordering_info'] = ""
1802 'variables': {},
1836 output['variables']['ossfuzz'] = b(options.ossfuzz)
1838 # variables should be a root level element,
1840 variables = output['variables'] variable
1841 del output['variables']
1842 variables['is_debug'] = B(options.debug)
1861 'variables': variables,
1879 'NODE_TARGET_TYPE': variables['node_target_type'],