Skip to content

Commit df63edf

Browse files
committed
python standalones do not include llvm ee on windows
1 parent c37ee59 commit df63edf

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
@@ -2116,8 +2116,10 @@ def verify_ci(dest_suite, common_ci_dir="ci_common", args=None, ext=('.jsonnet',
21162116
'GraalVM Python license files': ('', []),
21172117
}},
21182118
standalone_dependencies_enterprise={**standalone_dependencies_common, **{
2119-
'LLVM Runtime Enterprise': ('lib/sulong', []),
2120-
'LLVM Runtime Native Enterprise': ('lib/sulong', []),
2119+
**({} if mx.is_windows() else {
2120+
'LLVM Runtime Enterprise': ('lib/sulong', []),
2121+
'LLVM Runtime Native Enterprise': ('lib/sulong', []),
2122+
}),
21212123
'GraalVM Python EE': ('', []),
21222124
'GraalVM Python license files EE': ('', []),
21232125
'GraalVM enterprise license files': ('', ['LICENSE.txt', 'GRAALVM-README.md']),

0 commit comments

Comments
 (0)