Skip to content

Commit 32739da

Browse files
committed
[GR-47571] Python standalones do not include llvm ee on windows.
PullRequest: graalpython/2894
2 parents edec272 + df63edf commit 32739da

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,8 +2117,10 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
21172117
'GraalVM Python license files': ('', []),
21182118
}},
21192119
standalone_dependencies_enterprise={**standalone_dependencies_common, **{
2120-
'LLVM Runtime Enterprise': ('lib/sulong', []),
2121-
'LLVM Runtime Native Enterprise': ('lib/sulong', []),
2120+
**({} if mx.is_windows() else {
2121+
'LLVM Runtime Enterprise': ('lib/sulong', []),
2122+
'LLVM Runtime Native Enterprise': ('lib/sulong', []),
2123+
}),
21222124
'GraalVM Python EE': ('', []),
21232125
'GraalVM Python license files EE': ('', []),
21242126
'GraalVM enterprise license files': ('', ['LICENSE.txt', 'GRAALVM-README.md']),

0 commit comments

Comments
 (0)