File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
graalpython/com.oracle.graal.python/src/META-INF/native-image/org.graalvm.python/python-language Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,6 @@ Args = -H:MaxRuntimeCompileMethods=20000 \
4
4
--features=com.oracle.graal.python.BouncyCastleFeature \
5
5
--add-exports=org.graalvm.nativeimage/org.graalvm.nativeimage.impl=org.graalvm.py \
6
6
--add-exports=org.graalvm.nativeimage/org.graalvm.nativeimage.impl=ALL-UNNAMED
7
+
8
+ # GR-46399: libpythonvm needs more than the default minimum of 8 GB to be built
9
+ JavaArgs = -Xms14g
Original file line number Diff line number Diff line change @@ -2051,7 +2051,6 @@ def bytecode_dsl_build_args():
2051
2051
jar_distributions = ['graalpython:GRAALPYTHON-LAUNCHER' , 'sdk:MAVEN_DOWNLOADER' ],
2052
2052
main_class = GRAALPYTHON_MAIN_CLASS ,
2053
2053
build_args = [
2054
- '-J-Xms14g' , # GR-46399: libpythonvm needs more than the default minimum of 8 GB to be built
2055
2054
'-H:+DetectUserDirectoriesInImageHeap' ,
2056
2055
'-H:-CopyLanguageResources' ,
2057
2056
# Uncomment to disable JLine FFM provider at native image build time
Original file line number Diff line number Diff line change 845
845
# Configure launcher
846
846
"-Dorg.graalvm.launcher.class=com.oracle.graal.python.shell.GraalPythonMain" ,
847
847
# GraalPy standalone specific flags
848
- "-J-Xms14g" , # GR-46399: libpythonvm needs more than the default minimum of 8 GB to be built
849
848
# uncomment to disable JLine FFM provider at native image build time
850
849
#'-Dorg.graalvm.shadowed.org.jline.terminal.ffm.disable=true',
851
850
'--enable-native-access=org.graalvm.shadowed.jline' ,
You can’t perform that action at this time.
0 commit comments