diff options
author | The Lux Programming Language | 2017-09-19 06:09:53 -0400 |
---|---|---|
committer | GitHub | 2017-09-19 06:09:53 -0400 |
commit | ddac5af82dc943146b8c34a736b39bc1557db4f1 (patch) | |
tree | 76797f982c582c13d88e3e981c8ac0c3b844f872 /stdlib | |
parent | c95fa2cc7db042fdde7250479727650f43b087a1 (diff) | |
parent | 240437327faae3d3518bf27c8f23b80b8ecd3f21 (diff) |
Merge pull request #33 from stephenBDT/higher-stacksize-for-compiling-stdlib
Using leinigen lux plugin again and increased stacksize. I always got…
Diffstat (limited to '')
-rw-r--r-- | stdlib/project.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/project.clj b/stdlib/project.clj index ec02df7bd..4d01ffed4 100644 --- a/stdlib/project.clj +++ b/stdlib/project.clj @@ -3,7 +3,7 @@ :url "https://github.com/LuxLang/stdlib" :license {:name "MIT License" :url "https://opensource.org/licenses/MIT"} - ;; :plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]] + :plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]] :deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" :creds :gpg}] ["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/" @@ -16,6 +16,7 @@ :scm {:name "git" :url "https://github.com/LuxLang/lux.git"} + :jvm-opts ["-Xss4m"] :dependencies [] :source-paths ["source"] |