Configuring the Compilation Environment
- Use PuTTY to log in to the server as the root user.
- Run the following command to install dependencies:
yum install -y java-1.8.0-openjdk* ant hwloc-devel openssl-devel libdb-devel pam-devel junit* javacc* libXt-devel motif-devel ncurses-devel
In this example, the CentOS 7.6 image is used as the local Yum source. You can change the Yum source in the /etc/yum.repos.d directory as required.
- Load the environment variables of Java 1.8.0 that has been installed.
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-7.b13.el7.aarch64 export PATH=$JAVA_HOME/bin:$PATH
- Create a soft link for the JRE library of ARM64.
cd /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-7.b13.el7.aarch64/jre/lib ln -s aarch64 arm64
Parent topic: SGE 8.1.9 Porting Guide (CentOS 7.6)