You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param list[str] truffle_jars: JAR distributions that should be on the classpath for the language implementation.
377
378
:param bool include_in_polyglot: whether this component is included in `--language:all` or `--tool:all` and should be part of polyglot images (deprecated).
378
379
:param str standalone_dir_name: name for the standalone archive and directory inside
379
-
:param dict[str, (str, list[str])] standalone_dependencies: dict of dependent components to include in the standalone in the form {component name: (relative path, excluded_paths)}.
380
+
:param dict[str, (str, list[str])] standalone_dependencies: dict of dependent components to include in the CE standalone in the form {component name: (relative path, excluded_paths)}.
381
+
:param dict[str, (str, list[str])] standalone_dependencies_enterprise: like `standalone_dependencies`, but for the EE standalone. Defaults to `standalone_dependencies` if not set.
missing_dependencies= [depfordepindependenciesifnothas_component(dep) or_has_skipped_libraries(get_component(dep)) or (get_component(dep).library_configsandnot_get_svm_support().is_supported())]
missing_dependency_names= [depfordepindependency_namesifnothas_component(dep) or_has_skipped_libraries(get_component(dep)) or (get_component(dep).library_configsandnotsvm_support.is_supported())]
3136
+
ifmissing_dependency_names:
3130
3137
ifmx.get_opts().verbose:
3131
-
mx.warn("Skipping standalone {} because the components {} are excluded".format(main_component.name, missing_dependencies))
3138
+
mx.warn("Skipping standalone {} because the components {} are excluded".format(main_component.name, missing_dependency_names))
0 commit comments