summaryrefslogtreecommitdiffstats
path: root/bin/buildhdf5
diff options
context:
space:
mode:
authormattjala <124107509+mattjala@users.noreply.github.com>2023-06-15 20:54:12 (GMT)
committerGitHub <noreply@github.com>2023-06-15 20:54:12 (GMT)
commit31d098776e5de670e0616dae2ba7f52758374ec8 (patch)
tree6a5cd4d26254d437ca102de05ba9805614a9ebf4 /bin/buildhdf5
parent4a6872cbf62380ec0ee3394d5e0710de2216b21d (diff)
downloadhdf5-31d098776e5de670e0616dae2ba7f52758374ec8.zip
hdf5-31d098776e5de670e0616dae2ba7f52758374ec8.tar.gz
hdf5-31d098776e5de670e0616dae2ba7f52758374ec8.tar.bz2
Add java options to build scripts (#3137)
Previously, cmakehdf5 turned on compiling of the java interface by default due to a value set in cacheinit.cmake. Now, consistent with how Fortran and CPP interfaces are handled, the script overwrites this default value to disable the libraries, fixing #2958. I also implemented the --enable-java/--disable java options for cmakehdf5, and -java for buildhdf5. Allen said these scripts should mention that compilers are to be specified in environment variables, but missing compilers causes errors at the CMake level, and CMake's error messages are already pretty informative (See the one in #2958 about JAVA_COMPILER).
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"
;;