diff options
author | a-beliakov <a-beliakov@yandex-team.com> | 2023-07-20 11:29:21 +0300 |
---|---|---|
committer | a-beliakov <a-beliakov@yandex-team.com> | 2023-07-20 11:29:21 +0300 |
commit | 71fe3eaed29491cd05552a526c531f5c7c207d50 (patch) | |
tree | 77ae444e7e3d9e1fd0563e437ab536141a755e9d /build | |
parent | 04c5f1685ae7fc88b5ee4e52b48f75985078b653 (diff) | |
download | ydb-71fe3eaed29491cd05552a526c531f5c7c207d50.tar.gz |
Set idea.max.content.load.filesize globally
Diffstat (limited to 'build')
-rw-r--r-- | build/scripts/compile_java.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/compile_java.py b/build/scripts/compile_java.py index 7b6455ebf0..e2c12852ea 100644 --- a/build/scripts/compile_java.py +++ b/build/scripts/compile_java.py @@ -78,7 +78,7 @@ def main(): ts.write(' '.join(ktsrcs + srcs)) kt_classes_dir = 'kt_cls' mkdir_p(kt_classes_dir) - sp.check_call([opts.java_bin, '-jar', opts.kotlin_compiler, '-classpath', classpath, '-d', kt_classes_dir] + ktc_opts + ['@' + temp_kt_sources_file]) + sp.check_call([opts.java_bin, '-Didea.max.content.load.filesize=30720', '-jar', opts.kotlin_compiler, '-classpath', classpath, '-d', kt_classes_dir] + ktc_opts + ['@' + temp_kt_sources_file]) classpath = os.pathsep.join([kt_classes_dir, classpath]) if srcs: |