gnu: jamvm-1-bootstrap: Fix segfault in bootstrap JVM.
* gnu/packages/java.scm (jamvm-1-bootstrap)[arguments]: Add configure flags: --disable-int-caching, --enable-runtime-reloc-checks, and --enable-ffi. [inputs]: Add libffi.
This commit is contained in:
parent
ff810d21a5
commit
fc37b4afb2
|
@ -186,10 +186,14 @@ language.")
|
|||
(arguments
|
||||
`(#:configure-flags
|
||||
(list (string-append "--with-classpath-install-dir="
|
||||
(assoc-ref %build-inputs "classpath")))))
|
||||
(assoc-ref %build-inputs "classpath"))
|
||||
"--disable-int-caching"
|
||||
"--enable-runtime-reloc-checks"
|
||||
"--enable-ffi")))
|
||||
(inputs
|
||||
`(("classpath" ,classpath-bootstrap)
|
||||
("jikes" ,jikes)
|
||||
("libffi" ,libffi)
|
||||
("zlib" ,zlib)))
|
||||
(home-page "http://jamvm.sourceforge.net/")
|
||||
(synopsis "Small Java Virtual Machine")
|
||||
|
|
Loading…
Reference in New Issue