Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
hg clone http://hg.openjdk.java.net/jdk7u/jdk7u-dev
cd jdk7u-dev
chmod 755 get_source.sh
./get_source.sh

2. Build

Set the LANG environment variable if it isn't set, then run make:

Code Block

$ export LANG=C        # bash, ksh, etc.
% setenv LANG C        # csh and friends
Code Block
titleJava 7 or higher installed
make ALLOW_DOWNLOADS=true ALT_BOOTDIR=`/usr/libexec/java_home -v 1.7+` HOTSPOT_BUILD_JOBS=`sysctl -n hw.ncpu`

...