@@ -899,8 +899,6 @@ def configure_node(o):
899
899
if options.systemtap_includes:
900
900
o[' include_dirs' ] += [options.systemtap_includes]
901
901
o[' variables' ][' node_use_dtrace' ] = b(use_dtrace)
902
- o[' variables' ][' uv_use_dtrace' ] = b(use_dtrace)
903
- o[' variables' ][' uv_parent_path' ] = ' /deps/uv/'
904
902
elif options.with_dtrace:
905
903
raise Exception(
906
904
' DTrace is currently only supported on SunOS, MacOS or Linux systems.' )
@@ -977,7 +975,6 @@ def configure_node(o):
977
975
o[' variables' ][' library_files' ] = options.linked_module
978
976
979
977
o[' variables' ][' asan' ] = int(options.enable_asan or 0)
980
- o[' variables' ][' debug_devtools' ] = ' node'
981
978
982
979
if options.use_xcode and options.use_ninja:
983
980
raise Exception(' --xcode and --ninja cannot be used together.' )
@@ -1352,8 +1349,6 @@ def configure_intl(o):
1352
1349
# this is the input '.dat' file to use .. icudt*.dat
1353
1350
# may be little-endian if from a icu-project.org tarball
1354
1351
o[' variables' ][' icu_data_in' ] = icu_data_in
1355
- # this is the icudt*.dat file which node will be using (platform endianness)
1356
- o[' variables' ][' icu_data_file' ] = icu_data_file
1357
1352
if not os.path.isfile(icu_data_path):
1358
1353
print(' Error: ICU prebuilt data file %s does not exist.' % icu_data_path)
1359
1354
print(' See the README.md.' )
0 commit comments