@@ -1960,6 +1960,12 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
19601960))
19611961
19621962
1963+ standalone_dependencies_common = {
1964+ 'LLVM Runtime Core' : ('lib/sulong' , []),
1965+ 'LLVM Runtime Native' : ('lib/sulong' , []),
1966+ 'LLVM.org toolchain' : ('lib/llvm-toolchain' , []),
1967+ }
1968+
19631969mx_sdk .register_graalvm_component (mx_sdk .GraalVmLanguage (
19641970 suite = SUITE ,
19651971 name = 'GraalVM Python' ,
@@ -1977,12 +1983,14 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
19771983 'TRegex' ,
19781984 'ICU4J' ,
19791985 ],
1980- standalone_dependencies = {
1981- 'LLVM Runtime Core' : ('lib/sulong' , []),
1982- 'LLVM Runtime Native' : ('lib/sulong' , []),
1983- 'LLVM.org toolchain' : ('lib/llvm-toolchain' , []),
1986+ standalone_dependencies = {** standalone_dependencies_common , ** {
19841987 'GraalVM Python license files' : ('' , []),
1985- },
1988+ }},
1989+ standalone_dependencies_enterprise = {** standalone_dependencies_common , ** {
1990+ 'LLVM Runtime Enterprise' : ('lib/sulong' , []),
1991+ 'LLVM Runtime Native Enterprise' : ('lib/sulong' , []),
1992+ 'GraalVM Python license files EE' : ('' , []),
1993+ }},
19861994 truffle_jars = [
19871995 'graalpython:GRAALPYTHON' ,
19881996 'graalpython:BOUNCYCASTLE-PROVIDER' ,
0 commit comments