All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-java][PATCH] docs: add bootstrap-flow.txt
@ 2018-04-25 15:06 André Draszik
  2018-06-18 15:40 ` Richard Leitner
  2018-06-19  8:04 ` Richard Leitner
  0 siblings, 2 replies; 3+ messages in thread
From: André Draszik @ 2018-04-25 15:06 UTC (permalink / raw)
  To: openembedded-devel

From: André Draszik <andre.draszik@jci.com>

Summarises the bootstrap of the java envrionment, rather than having
to find this described in some wiki page that was copied over from
OE-classic and never updated.

Signed-off-by: André Draszik <andre.draszik@jci.com>
---
 docs/bootstrap-flow.txt | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 docs/bootstrap-flow.txt

diff --git a/docs/bootstrap-flow.txt b/docs/bootstrap-flow.txt
new file mode 100644
index 0000000..602eab7
--- /dev/null
+++ b/docs/bootstrap-flow.txt
@@ -0,0 +1,37 @@
+* first jikes-native is compiled
+  * a Java 1.4-capable compiler that does not need a runtime or
+    (strictly) a class library to work
+* jikes-initial-native is a wrapper around it
+
+* with this compiler we compile the initial (preliminary)
+  runtime (package virtual/java-initial-native)
+  * virtual/java-initial-native can be: cacao-initial-native (0.98)
+    or jamvm-initial-native (1.4.5)
+    * cacao is preferred, as it has a JIT, but doesn't compile
+      on all hosts
+    * cacao-initial-native and jamvm-initial-native both need
+      classpath-initial-native (0.93) and jikes-initial-native
+
+* now libecj-bootstrap-native is built
+  * this needs jikes-initial-native virtual/java-initial-native
+* now ecj-initial is built
+  * this needs libecj-bootstrap-native and
+    virtual/java-initial-native during runtime
+  * at that point we have a 1.5-capable compiler (ecj-initial)
+    running on a Java 1.4 compatible VM (cacao-inital-native
+    or jamvm-initial-native)
+
+* with this compiler (ecj-initial), we compile the final runtime
+  and compiler (virtual/java-native and virtual/javac-native)
+  * virtual/java-native can be: cacao-native (1.6.1) or
+    jamvm-native (2.0.0~pre)
+    * cacao vs jamvm as above
+    * cacao-native and jamvm-native both need
+      classpath-initial-native (0.93) and classpath-native (0.99)
+      and ecj-initial-native and virtual/java-initial-native
+  * virtual/javac-native can be: ecj-bootstrap-native
+    * ecj-bootstrap-native needs libecj-bootstrap-native
+      and virtual/java-native
+  * at that point we have a 1.5-capable compiler (ecj-bootstrap-native)
+    running on a Java 1.5 compatible VN (cacao-native or
+    jamvm-native)
-- 
2.16.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-java][PATCH] docs: add bootstrap-flow.txt
  2018-04-25 15:06 [meta-java][PATCH] docs: add bootstrap-flow.txt André Draszik
@ 2018-06-18 15:40 ` Richard Leitner
  2018-06-19  8:04 ` Richard Leitner
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Leitner @ 2018-06-18 15:40 UTC (permalink / raw)
  To: André Draszik; +Cc: openembedded-devel

On 04/25/2018 05:06 PM, André Draszik wrote:
> From: André Draszik <andre.draszik@jci.com>
> 
> Summarises the bootstrap of the java envrionment, rather than having
> to find this described in some wiki page that was copied over from
> OE-classic and never updated.
> 
> Signed-off-by: André Draszik <andre.draszik@jci.com>

Acked-by: Richard Leitner <richard.leitner@skidata.com>

> ---
>  docs/bootstrap-flow.txt | 37 +++++++++++++++++++++++++++++++++++++
>  1 file changed, 37 insertions(+)
>  create mode 100644 docs/bootstrap-flow.txt
> 
> diff --git a/docs/bootstrap-flow.txt b/docs/bootstrap-flow.txt
> new file mode 100644
> index 0000000..602eab7
> --- /dev/null
> +++ b/docs/bootstrap-flow.txt
> @@ -0,0 +1,37 @@
> +* first jikes-native is compiled
> +  * a Java 1.4-capable compiler that does not need a runtime or
> +    (strictly) a class library to work
> +* jikes-initial-native is a wrapper around it
> +
> +* with this compiler we compile the initial (preliminary)
> +  runtime (package virtual/java-initial-native)
> +  * virtual/java-initial-native can be: cacao-initial-native (0.98)
> +    or jamvm-initial-native (1.4.5)
> +    * cacao is preferred, as it has a JIT, but doesn't compile
> +      on all hosts
> +    * cacao-initial-native and jamvm-initial-native both need
> +      classpath-initial-native (0.93) and jikes-initial-native
> +
> +* now libecj-bootstrap-native is built
> +  * this needs jikes-initial-native virtual/java-initial-native
> +* now ecj-initial is built
> +  * this needs libecj-bootstrap-native and
> +    virtual/java-initial-native during runtime
> +  * at that point we have a 1.5-capable compiler (ecj-initial)
> +    running on a Java 1.4 compatible VM (cacao-inital-native
> +    or jamvm-initial-native)
> +
> +* with this compiler (ecj-initial), we compile the final runtime
> +  and compiler (virtual/java-native and virtual/javac-native)
> +  * virtual/java-native can be: cacao-native (1.6.1) or
> +    jamvm-native (2.0.0~pre)
> +    * cacao vs jamvm as above
> +    * cacao-native and jamvm-native both need
> +      classpath-initial-native (0.93) and classpath-native (0.99)
> +      and ecj-initial-native and virtual/java-initial-native
> +  * virtual/javac-native can be: ecj-bootstrap-native
> +    * ecj-bootstrap-native needs libecj-bootstrap-native
> +      and virtual/java-native
> +  * at that point we have a 1.5-capable compiler (ecj-bootstrap-native)
> +    running on a Java 1.5 compatible VN (cacao-native or
> +    jamvm-native)
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-java][PATCH] docs: add bootstrap-flow.txt
  2018-04-25 15:06 [meta-java][PATCH] docs: add bootstrap-flow.txt André Draszik
  2018-06-18 15:40 ` Richard Leitner
@ 2018-06-19  8:04 ` Richard Leitner
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Leitner @ 2018-06-19  8:04 UTC (permalink / raw)
  To: André Draszik, openembedded-devel

Hi,
this is a note to let you know that I've just added this patch to the
master-next branch of the meta-java repository at
	git://git.yoctoproject.org/meta-java

As soon as it has gone through some more testing it will likely be
merged to the master branch.

If you have any questions, please let me know.

regards;Richard.L

On 25.04.2018 17:06, André Draszik wrote:
> From: André Draszik <andre.draszik@jci.com>
> 
> Summarises the bootstrap of the java envrionment, rather than having
> to find this described in some wiki page that was copied over from
> OE-classic and never updated.
> 
> Signed-off-by: André Draszik <andre.draszik@jci.com>
> ---
>   docs/bootstrap-flow.txt | 37 +++++++++++++++++++++++++++++++++++++
>   1 file changed, 37 insertions(+)
>   create mode 100644 docs/bootstrap-flow.txt
> 
> diff --git a/docs/bootstrap-flow.txt b/docs/bootstrap-flow.txt
> new file mode 100644
> index 0000000..602eab7
> --- /dev/null
> +++ b/docs/bootstrap-flow.txt
> @@ -0,0 +1,37 @@
> +* first jikes-native is compiled
> +  * a Java 1.4-capable compiler that does not need a runtime or
> +    (strictly) a class library to work
> +* jikes-initial-native is a wrapper around it
> +
> +* with this compiler we compile the initial (preliminary)
> +  runtime (package virtual/java-initial-native)
> +  * virtual/java-initial-native can be: cacao-initial-native (0.98)
> +    or jamvm-initial-native (1.4.5)
> +    * cacao is preferred, as it has a JIT, but doesn't compile
> +      on all hosts
> +    * cacao-initial-native and jamvm-initial-native both need
> +      classpath-initial-native (0.93) and jikes-initial-native
> +
> +* now libecj-bootstrap-native is built
> +  * this needs jikes-initial-native virtual/java-initial-native
> +* now ecj-initial is built
> +  * this needs libecj-bootstrap-native and
> +    virtual/java-initial-native during runtime
> +  * at that point we have a 1.5-capable compiler (ecj-initial)
> +    running on a Java 1.4 compatible VM (cacao-inital-native
> +    or jamvm-initial-native)
> +
> +* with this compiler (ecj-initial), we compile the final runtime
> +  and compiler (virtual/java-native and virtual/javac-native)
> +  * virtual/java-native can be: cacao-native (1.6.1) or
> +    jamvm-native (2.0.0~pre)
> +    * cacao vs jamvm as above
> +    * cacao-native and jamvm-native both need
> +      classpath-initial-native (0.93) and classpath-native (0.99)
> +      and ecj-initial-native and virtual/java-initial-native
> +  * virtual/javac-native can be: ecj-bootstrap-native
> +    * ecj-bootstrap-native needs libecj-bootstrap-native
> +      and virtual/java-native
> +  * at that point we have a 1.5-capable compiler (ecj-bootstrap-native)
> +    running on a Java 1.5 compatible VN (cacao-native or
> +    jamvm-native)
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-06-19  8:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-25 15:06 [meta-java][PATCH] docs: add bootstrap-flow.txt André Draszik
2018-06-18 15:40 ` Richard Leitner
2018-06-19  8:04 ` Richard Leitner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.