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 for MIPS and other architectures using OpenEmbedded recipes


When ARM-based devices are widespread and popular, there are always other architectures. The great power of Java is its cross-platformness, so let's try to have builds for some other architecture.

Getting ready

You will need an Internet connection and Linux or Windows with Cygwin installed on your computer. Also, from the author's experience, you will need at least 4GB RAM.

For a comfortable build, it's recommended to have a powerful hardware and a fast HDD.

Also, you may experience some lags or even OOM-kills during build, so make sure that all your data is saved.

Also, you will need an OpenEmbedded project configured, as described in the first recipe of this chapter.

How to do it...

First, we will see how to add architectures and software to OpenEmbedded:

  1. Open your browser, and go to http://layers.openembedded.org/layerindex/branch/master/layers/.

    You will find a list of architectures supported and a list of software that you...