From 881689ead21bb9d1a6aa6fce1bfd23fa0d17b89d Mon Sep 17 00:00:00 2001 From: Zhuowei Zhang Date: Mon, 15 Apr 2019 16:15:32 -0400 Subject: [PATCH] add makejdkwithoutconfigure --- makejdkwithoutconfigure.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 makejdkwithoutconfigure.sh diff --git a/makejdkwithoutconfigure.sh b/makejdkwithoutconfigure.sh new file mode 100755 index 0000000..d69db7b --- /dev/null +++ b/makejdkwithoutconfigure.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# duplicate of buildjdk.sh that avoids reconfiguring. Used for making changes to openjdk code. + +set -e +. setdevkitpath.sh +export FREETYPE_DIR=`pwd`/freetype-2.6.2/build_android-arm +export CUPS_DIR=`pwd`/cups-2.2.4 + +# My system's JDK is too old (7.0), so we add an Oracle boot JDK. +export PATH=`pwd`/jdk-9.0.4/bin:$PATH + +cd openjdk +cd build/android-arm-normal-server-release +make JOBS=4 images