diff options
author | Sven Gothel <[email protected]> | 2013-08-06 19:32:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-08-06 19:32:29 +0200 |
commit | a94b0e3c62110f077ea391ccdc158b2c804a5bb8 (patch) | |
tree | 15150ca4a2f3f733c22a474f9cffb43a27a2dad1 /scripts/make.jep161-openjdk8.sh | |
parent | fb85d3c8f49b7fa0fe6c44e6723585708ffdf808 (diff) |
OpenJDK 8 Profiles ..
Stripped binary size GNU/Linux x64:
30M export/linux-x86_64-normal-server-release/j2re-compact1-image
42M export/linux-x86_64-normal-server-release/j2re-compact2-image
48M export/linux-x86_64-normal-server-release/j2re-compact3-image
94M export/linux-x86_64-normal-server-release/j2re-image
Diffstat (limited to 'scripts/make.jep161-openjdk8.sh')
-rw-r--r-- | scripts/make.jep161-openjdk8.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/make.jep161-openjdk8.sh b/scripts/make.jep161-openjdk8.sh new file mode 100644 index 0000000..85f5da0 --- /dev/null +++ b/scripts/make.jep161-openjdk8.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +logfile=`basename $0 .sh`.log + +build_it() { + sh configure --enable-openjdk-only \ + --disable-zip-debug-info --disable-debug-symbols \ + --with-debug-level=release \ + && make profiles images docs +} + +build_it 2>&1 | tee -a $logfile + |