summaryrefslogtreecommitdiffstats
path: root/bin/buildhdf5
diff options
context:
space:
mode:
Diffstat (limited to 'bin/buildhdf5')
-rwxr-xr-xbin/buildhdf56
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/buildhdf5 b/bin/buildhdf5
index 4c84884..a2a13cb 100755
--- a/bin/buildhdf5
+++ b/bin/buildhdf5
@@ -25,7 +25,7 @@ can continue from a previous build.
Command Syntax
==============
-buildhdf5 [-config] [-szlib] [-help] [-n] [-srcdir dir] [-fortran] [-cxx] [-pp] config-arguments ...
+buildhdf5 [-config] [-szlib] [-help] [-n] [-srcdir dir] [-fortran] [-cxx] [-java] [-pp] config-arguments ...
-config: run configure only. [default to do build too]
-szlib: configure in the szlib option
-help: show this help page
@@ -35,6 +35,7 @@ buildhdf5 [-config] [-szlib] [-help] [-n] [-srcdir dir] [-fortran] [-cxx] [-pp]
which will be passed to configure]
-fortran: add --enable-fortran
-cxx: add --enable-cxx
+ -java: add --enable-java
-pp: add --enable-parallel
all other arguments are passed to configure
@@ -251,6 +252,9 @@ while [ $# -gt 0 ]; do
-cxx)
CONFIG_OP="$CONFIG_OP --enable-cxx"
;;
+ -java)
+ CONFIG_OP="$CONFIG_OP --enable-java"
+ ;;
-fortran)
CONFIG_OP="$CONFIG_OP --enable-fortran"
;;