diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-03-24 22:56:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-03-24 23:00:03 +0100 |
commit | f15e2ee4e833845d429e7736aa9a76ad88321cc1 (patch) | |
tree | a1c163d3e798ea73950aa0607433ac09a7a315e7 /gnu/packages | |
parent | 15b8b5deca4418377923ef7d9fbdce1ccde42a54 (diff) | |
download | guix-f15e2ee4e833845d429e7736aa9a76ad88321cc1.tar guix-f15e2ee4e833845d429e7736aa9a76ad88321cc1.tar.gz |
gnu: sablevm: Use a different GC implementation.
This is an attempt to fix a segfault when building ant-bootstrap.
* gnu/packages/java.scm (sablevm)[arguments]: Use gencopy GC implementation.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/java.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 317aa02328..fafbb22954 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -167,7 +167,7 @@ This package provides the classpath library.") (build-system gnu-build-system) (arguments `(#:configure-flags - (list "--with-threading=switch" ; slower but prevents segfault + (list "--with-gc=gencopy" ; this seems to prevent a segfault "--with-internal-libffi=no" "--with-internal-libpopt=no") #:phases |