Skip to content

Commit d50b2ff

Browse files
committed
[GR-45794] The Python EE standalone includes LLVM EE.
PullRequest: graalpython/2812
2 parents 32555d0 + ade7d0b commit d50b2ff

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "d5b4064ebdf5a27a1fd07e706a5e5c52016b5c70" }
1+
{ "overlay": "b676f3e9a8ed96de8f3df5b9f20677e5d15586a9" }

mx.graalpython/mx_graalpython.py

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1970,6 +1970,12 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
19701970
))
19711971

19721972

1973+
standalone_dependencies_common = {
1974+
'LLVM Runtime Core': ('lib/sulong', []),
1975+
'LLVM Runtime Native': ('lib/sulong', []),
1976+
'LLVM.org toolchain': ('lib/llvm-toolchain', []),
1977+
}
1978+
19731979
mx_sdk.register_graalvm_component(mx_sdk.GraalVmLanguage(
19741980
suite=SUITE,
19751981
name='GraalVM Python',
@@ -1987,12 +1993,15 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
19871993
'TRegex',
19881994
'ICU4J',
19891995
],
1990-
standalone_dependencies={
1991-
'LLVM Runtime Core': ('lib/sulong', []),
1992-
'LLVM Runtime Native': ('lib/sulong', []),
1993-
'LLVM.org toolchain': ('lib/llvm-toolchain', []),
1996+
standalone_dependencies={**standalone_dependencies_common, **{
19941997
'GraalVM Python license files': ('', []),
1995-
},
1998+
}},
1999+
standalone_dependencies_enterprise={**standalone_dependencies_common, **{
2000+
'LLVM Runtime Enterprise': ('lib/sulong', []),
2001+
'LLVM Runtime Native Enterprise': ('lib/sulong', []),
2002+
'GraalVM Python license files EE': ('', []),
2003+
'GraalVM enterprise license files': ('', ['LICENSE.txt', 'GRAALVM-README.md']),
2004+
}},
19962005
truffle_jars=[
19972006
'graalpython:GRAALPYTHON',
19982007
'graalpython:BOUNCYCASTLE-PROVIDER',

mx.graalpython/suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,31 @@
4444
},
4545
{
4646
"name": "sdk",
47-
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
47+
"version": "27509a3069b251692a860ef13a577832d8260f9f",
4848
"subdir": True,
4949
"urls": [
5050
{"url": "https://github.com/oracle/graal", "kind": "git"},
5151
]
5252
},
5353
{
5454
"name": "tools",
55-
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
55+
"version": "27509a3069b251692a860ef13a577832d8260f9f",
5656
"subdir": True,
5757
"urls": [
5858
{"url": "https://github.com/oracle/graal", "kind": "git"},
5959
],
6060
},
6161
{
6262
"name": "sulong",
63-
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
63+
"version": "27509a3069b251692a860ef13a577832d8260f9f",
6464
"subdir": True,
6565
"urls": [
6666
{"url": "https://github.com/oracle/graal", "kind": "git"},
6767
]
6868
},
6969
{
7070
"name": "regex",
71-
"version": "1278cae8aab28d43939aefaf699e1c09d529715b",
71+
"version": "27509a3069b251692a860ef13a577832d8260f9f",
7272
"subdir": True,
7373
"urls": [
7474
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)