summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-02-02 01:10:40 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2023-04-30 01:45:33 +0200
commite1854a31fd14e7f1c52f6ae85a8a933c6e54ee42 (patch)
treecee078f6fb55ee301f313dda0da5987d8bf9fc06
parentUpgrade to Krossbow 5.1.0 and Kotlinx Serialization 1.5.0 (diff)
downloadseven-wonders-e1854a31fd14e7f1c52f6ae85a8a933c6e54ee42.tar.gz
seven-wonders-e1854a31fd14e7f1c52f6ae85a8a933c6e54ee42.tar.bz2
seven-wonders-e1854a31fd14e7f1c52f6ae85a8a933c6e54ee42.zip
Increase Kotlin compiler daemon's memory
-rw-r--r--gradle.properties3
1 files changed, 3 insertions, 0 deletions
diff --git a/gradle.properties b/gradle.properties
index e4f47a55..627900da 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,6 +1,9 @@
org.gradle.parallel=true
org.gradle.caching=true
+# Getting OOM when building the project from scratch with JS IR backend
+kotlin.daemon.jvmargs=-Xmx2g
+
kotlin.js.compiler=ir
# To disable warning about experimental status of Kotlin MPP
bgstack15