-
Notifications
You must be signed in to change notification settings - Fork 728
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3772 from SueChaplain/add_macos_on_8
Add build instructions for OpenJDK8 for macOS
- Loading branch information
Showing
1 changed file
with
150 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,11 +529,158 @@ JCL - 7f27c537a8 based on jdk8u172-b11) | |
|
||
---------------------------------- | ||
|
||
## MacOS | ||
## macOS | ||
:apple: | ||
The following instructions guide you through the process of building a macOS **OpenJDK V8** binary that contains Eclipse OpenJ9. This process can be used to build binaries to run on macOSX 10.9.0 or later. This process is compatible only on MacOSX 10.10 (Yosemite) and 10.11 (El Capitan). The Xcode tools might not work on other MacOSX versions. | ||
|
||
:construction: | ||
We haven't created a full build process for macOS yet? Watch this space! | ||
### 1. Prepare your system | ||
:apple: | ||
You must install a number of software dependencies to create a suitable build environment on your system: | ||
|
||
- [Xcode 4.6.3]( https://developer.apple.com/downloads) (requires an Apple account to log in): Download the \*.dmg file. From the **Downloads** directory, drag the Xcode.app icon into a new directory, `/Applications/Xcode4`. You must accept the license for Xcode to work. Switch to the active developer directory for Xcode4 by typing `sudo xcode-select -switch /Applications/Xcode4/Xcode.app` and accept the license by typing `sudo xcodebuild -license accept`. | ||
- [Xcode 7.2.1]( https://developer.apple.com/downloads) (requires an Apple account to log in): Download the \*.dmg file. From the **Downloads** directory, drag the Xcode.app icon into a new directory, `/Applications/Xcode7`. You must switch the active developer directory to Xcode7, by running `sudo xcode-select -switch /Applications/Xcode7/Xcode.app`. Accept the license by typing `sudo xcodebuild -license accept`. | ||
- [macOS OpenJDK 8](https://adoptopenjdk.net/archive.html?variant=openjdk8&jvmVariant=hotspot), which is used as the boot JDK. | ||
|
||
The following dependencies can be installed by using [Homebrew](https://brew.sh/): | ||
|
||
- [autoconf 2.6.9](https://formulae.brew.sh/formula/autoconf) | ||
- [bash 4.4.23](https://formulae.brew.sh/formula/bash) | ||
- [freetype 2.9.1](https://formulae.brew.sh/formula/freetype) | ||
- [git 2.19.2](https://formulae.brew.sh/formula/git) | ||
- [gnu-tar 1.3](https://formulae.brew.sh/formula/gnu-tar) | ||
- [gnu-sed 4.5](https://formulae.brew.sh/formula/gnu-sed) | ||
- [nasm 2.13.03](https://formulae.brew.sh/formula/nasm) | ||
- [pkg-config 0.29.2](https://formulae.brew.sh/formula/pkg-config) | ||
- [wget 1.19.5 ](https://formulae.brew.sh/formula/wget) | ||
|
||
|
||
[Freemarker V2.3.8](https://sourceforge.net/projects/freemarker/files/freemarker/2.3.8/freemarker-2.3.8.tar.gz/download) is also required, which can be obtained and installed with the following commands: | ||
|
||
``` | ||
wget https://sourceforge.net/projects/freemarker/files/freemarker/2.3.8/freemarker-2.3.8.tar.gz/download -O freemarker.tgz | ||
gtar -xzf freemarker.tgz freemarker-2.3.8/lib/freemarker.jar --strip-components=2 | ||
rm -f freemarker.tgz | ||
``` | ||
|
||
Bash version 4 is required by the `./get_source.sh` script that you will use in step 2, which is installed to `/usr/local/bin/bash`. To prevent problems during the build process, make Bash v4 your default shell by typing the following commands: | ||
|
||
``` | ||
# Find the <CURRENT_SHELL> for <USERNAME> | ||
dscl . -read <USERNAME> UserShell | ||
# Change the shell to Bash version 4 for <USERNAME> | ||
dscl . -change <USERNAME> UserShell <CURRENT_SHELL> /usr/local/bin/bash | ||
# Verify that the shell has been changed | ||
dscl . -read <USERNAME> UserShell | ||
``` | ||
|
||
Set the following environment variables: | ||
|
||
``` | ||
export SED=/usr/local/bin/gsed | ||
export TAR=/usr/local/bin/gtar | ||
export MACOSX_DEPLOYMENT_TARGET=10.9.0 | ||
export SDKPATH=/Applications/Xcode4/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk | ||
export JAVA_HOME=<PATH_TO_BOOT_JDK> | ||
``` | ||
|
||
If your build system is on OSX10.10 (Yosemite) you must update line 143 (`typedef void (^dispatch_block_t)(void);`) in `/usr/include/dispatch/object.h` to include the following lines of code: | ||
|
||
``` | ||
#ifdef __clang__ | ||
typedef void (^dispatch_block_t)(void); | ||
#else | ||
typedef void* dispatch_block_t; | ||
#endif | ||
``` | ||
|
||
|
||
### 2. Get the source | ||
:apple: | ||
First you need to clone the Extensions for OpenJDK for OpenJ9 project. This repository is a git mirror of OpenJDK without the HotSpot JVM, but with an **openj9** branch that contains a few necessary patches. | ||
|
||
Run the following command: | ||
``` | ||
git clone https://github.com/ibmruntimes/openj9-openjdk-jdk8.git | ||
``` | ||
Cloning this repository can take a while because OpenJDK is a large project! When the process is complete, change directory into the cloned repository: | ||
``` | ||
cd ./openj9-openjdk-jdk8 | ||
``` | ||
Now fetch additional sources from the Eclipse OpenJ9 project and its clone of Eclipse OMR: | ||
|
||
``` | ||
bash ./get_source.sh | ||
``` | ||
|
||
:pencil: **OpenSSL support:** If you want to build an OpenJDK with OpenJ9 binary with OpenSSL support and you do not have a built version of OpenSSL v1.1.x available locally, you must obtain a prebuilt OpenSSL v1.1.x binary. | ||
|
||
### 3. Configure | ||
:apple: | ||
When you have all the source files that you need, run the configure script, which detects how to build in the current build environment. | ||
|
||
``` | ||
bash ./configure \ | ||
--with-freemarker-jar=<PATH_TO_FREEMARKER_JAR> \ | ||
--with-xcode-path=/Applications/Xcode4/Xcode.app \ | ||
--with-openj9-cc=/Applications/Xcode7/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang \ | ||
--with-openj9-cxx=/Applications/Xcode7/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ \ | ||
--with-openj9-developer-dir=/Applications/Xcode7/Xcode.app/Contents/Developer | ||
``` | ||
|
||
:pencil: **Non-compressed references support:** If you require a heap size greater than 57GB, enable a noncompressedrefs build with the `--with-noncompressedrefs` option during this step. | ||
|
||
:pencil: **OpenSSL support:** If you want to build an OpenJDK that includes OpenSSL, you must specify `--with-openssl=path_to_library`, where `path_to_library` specifies the path to the prebuilt OpenSSL library that you obtained in **2. Get the source**. If you want to include the OpenSSL cryptographic library in the OpenJDK binary, you must also include `--enable-openssl-bundling`. | ||
|
||
### 4. build | ||
:apple: | ||
Now you're ready to build OpenJDK with OpenJ9. | ||
|
||
``` | ||
make all | ||
``` | ||
|
||
:pencil: Because `make all` does not provide sufficient details for debugging, a more verbose build can be produced by running the command `make LOG=trace all 2>&1 | tee make_all.log`. | ||
|
||
Four Java builds are produced, which include two full developer kits (jdk) and two runtime environments (jre): | ||
|
||
- **build/macos-x86_64-normal-server-release/images/j2sdk-image** | ||
- **build/macos-x86_64-normal-server-release/images/j2re-image** | ||
- **build/macos-x86_64-normal-server-release/images/j2sdk-bundle** | ||
- **build/macos-x86_64-normal-server-release/images/j2re-bundle** | ||
|
||
:pencil:For running applications such as Eclipse, use the **-bundle** versions. | ||
|
||
### 5. Test | ||
:apple: | ||
For a simple test, try running the `java -version` command. | ||
Change to the /j2re-image directory: | ||
``` | ||
cd build/macos-x86_64-normal-server-release/images/j2re-image | ||
``` | ||
Run: | ||
``` | ||
./bin/java -version | ||
``` | ||
|
||
Here is some sample output: | ||
|
||
``` | ||
openjdk version "1.8.0_192-internal" | ||
OpenJDK Runtime Environment (build 1.8.0_192-internal-jenkins_2018_10_17_11_24-b00) | ||
Eclipse OpenJ9 VM (build master-2c817c52c, JRE 1.8.0 Mac OS X amd64-64-Bit Compressed References 20181017_000000 (JIT enabled, AOT enabled) | ||
OpenJ9 - 2c817c52c | ||
OMR - 4d96857a | ||
JCL - fcd436bf56 based on jdk8u192-b03) | ||
``` | ||
|
||
:pencil: **OpenSSL support:** If you built an OpenJDK with OpenJ9 that includes OpenSSL v1.1.x support, the following acknowledgements apply in accordance with the license terms: | ||
|
||
- *This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/).* | ||
- *This product includes cryptographic software written by Eric Young ([email protected]).* | ||
|
||
:ledger: *Congratulations!* :tada: | ||
|
||
---------------------------------- | ||
|
||
|