[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/26: gnu: Add jikes.
From: |
Ricardo Wurmus |
Subject: |
04/26: gnu: Add jikes. |
Date: |
Mon, 22 May 2017 13:03:15 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit e1ae3587d26336251d24bed10a9172a9d9fb2f57
Author: Ricardo Wurmus <address@hidden>
Date: Mon May 8 15:34:15 2017 +0200
gnu: Add jikes.
* gnu/packages/java.scm (jikes): New variable.
---
gnu/packages/java.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index e86c904..6dc97fe 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -60,6 +60,50 @@
#:use-module (srfi srfi-11)
#:use-module (ice-9 match))
+
+;;;
+;;; Java bootstrap toolchain.
+;;;
+
+;; The Java bootstrap begins with Jikes, a Java compiler written in C++. We
+;; use it to build the SableVM standard library and virtual machine, which are
+;; written in a simpler dialect of Java and C, respectively. This is
+;; sufficient to build an older version of Ant, which is needed to build an
+;; older version of ECJ, an incremental Java compiler, both of which are
+;; written in Java.
+;;
+;; ECJ is needed to build the latest release of GNU Classpath (0.99).
+;; Classpath (> 0.98) is a requirement for JamVM, a more modern implementation
+;; of the Java virtual machine.
+;;
+;; With JamVM we can build the latest development version of GNU Classpath,
+;; which has much more support for Java 1.6 than the latest release. Since
+;; the previous build of JamVM is limited by the use of GNU Classpath 0.99 we
+;; rebuild it with the latest development version of GNU Classpath.
+;;
+;; Finally, we use the bootstrap toolchain to build the OpenJDK with the
+;; Icedtea 1.x build framework. We then build the more recent JDKs Icedtea
+;; 2.x and Icedtea 3.x.
+
+(define jikes
+ (package
+ (name "jikes")
+ (version "1.22")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/jikes/Jikes/"
+ version "/jikes-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1qqldrp74pzpy5ly421srqn30qppmm9cvjiqdngk8hf47dv2rc0c"))))
+ (build-system gnu-build-system)
+ (home-page "http://jikes.sourceforge.net/")
+ (synopsis "Compiler for the Java language")
+ (description "Jikes is a compiler that translates Java source files as
+defined in The Java Language Specification into the bytecoded instruction set
+and binary format defined in The Java Virtual Machine Specification.")
+ (license license:ibmpl1.0)))
+
(define-public java-swt
(package
(name "java-swt")
- branch master updated (fd3782d -> 9117448), Ricardo Wurmus, 2017/05/22
- 02/26: gnu: Add r-deseq., Ricardo Wurmus, 2017/05/22
- 07/26: gnu: Add ant-bootstrap., Ricardo Wurmus, 2017/05/22
- 12/26: gnu: Add classpath-jamvm-wrappers., Ricardo Wurmus, 2017/05/22
- 06/26: gnu: Add sablevm., Ricardo Wurmus, 2017/05/22
- 03/26: gnu: Add r-edaseq., Ricardo Wurmus, 2017/05/22
- 05/26: gnu: Add sablevm-classpath., Ricardo Wurmus, 2017/05/22
- 15/26: gnu: Add jamvm., Ricardo Wurmus, 2017/05/22
- 04/26: gnu: Add jikes.,
Ricardo Wurmus <=
- 11/26: gnu: Add jamvm-bootstrap., Ricardo Wurmus, 2017/05/22
- 16/26: gnu: Add ecj-javac-on-jamvm-wrapper-final., Ricardo Wurmus, 2017/05/22
- 24/26: gnu: Add ant/java8., Ricardo Wurmus, 2017/05/22
- 23/26: gnu: ant: Move after bootstrap packages., Ricardo Wurmus, 2017/05/22
- 22/26: gnu: ant: Delete bundled jars., Ricardo Wurmus, 2017/05/22
- 18/26: gnu: icedtea-7: Use icedtea-6 for bootstrapping., Ricardo Wurmus, 2017/05/22
- 17/26: gnu: Add icedtea-6., Ricardo Wurmus, 2017/05/22
- 26/26: gnu: Remove GCJ., Ricardo Wurmus, 2017/05/22
- 08/26: gnu: Add ecj-bootstrap., Ricardo Wurmus, 2017/05/22
- 13/26: gnu: Add ecj-javac-on-jamvm-wrapper., Ricardo Wurmus, 2017/05/22