Book Image

OpenJDK Cookbook

Book Image

OpenJDK Cookbook

Overview of this book

Table of Contents (20 chapters)
OpenJDK Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Building IcedTea for ARM with integrated CACAO VM


This recipe promises to be quite simple, because the integration of CACAO VM is already a part of IcedTea itself. It will not require any patching or other complicated things.

Getting ready

We may need a real or emulated ARM device, which has Linux and any Java environment installed. We need Java to perform a javac compilation, which is a necessary part of the IcedTea building process.

How to do it...

We will download IcedTea, unpack it, and build it with the specified parameters, that's all.

  1. First, let's get the latest IcedTea source from the server:

    wget http://icedtea.wildebeest.org/download/source/icedtea-<icedtea_version>.tar.gz
    

    It will download an archive.

  2. Perform a checksum check if required.

  3. Let's unpack an archive and copy it into the icedtea directory:

    tar -xzf icedtea-XXXX
    cd icedtea-XXXX
    
  4. Then, you might have to install some dependency packages needed to make your IcedTea.

  5. The given packages are those that were missing on the authors...