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 64-bit FreeType libraries for OpenJDK 7 on Windows


The FreeType build for Windows amd64 is similar to the i586 build from the previous recipe. Only different steps will be written in this recipe. Please refer to the previous recipe, Building 32-bit FreeType libraries for OpenJDK 7 on Windows for more detailed instructions.

Getting ready

For this recipe, we should have Windows 7 SP1 amd64 running.

How to do it...

The following procedures will help us in building FreeType:

  1. Download Microsoft .NET Framework 4 (Version 7.1), Microsoft Windows SDK for Windows 7 and Visual Studio 2010 Express Edition from the Microsoft website, and install them to default locations. The amd64 version of the SDK from the GRMSDKX_EN_DVD.iso file should be used.

  2. Follow steps 4 to 9 from the previous recipe to download and adjust the FreeType sources and configure the project in Visual Studio.

  3. On the main screen choose x64 as the Solution Platform.

  4. Follow steps 10 and 11 from the previous recipe. Libraries will be...