-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes to HDF5 support (mostly for Windows compatibility)
- use version HDF5 1.8.12 on Windows if Matlab is being built (see #208). At the moment the version is hard-wired. However, this likely introduced a conflict with Python as it usually uses a more recent version of HDF5 (certainly the Anaconda version does) - add a patch for HDF5 1.8.12 such that it compiles post VS 2013. - introduce a HDF5_DOWNLOAD_VERSION variable - introduce a HDF5_CMAKE_ARGS variable for use in the cmake files that depend on HDF5 This now works fine on Windows as far as I see. On Windows, we will need to have 2 separate builds for MATLAB or Python support unfortunately.
- Loading branch information
Kris Thielemans
committed
Jun 21, 2019
1 parent
2ed82ce
commit b6993a0
Showing
3 changed files
with
87 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- xx 2019-06-20 20:38:35.399865600 +0000 | ||
+++ ./config/cmake/ConfigureChecks.cmake 2019-06-20 20:20:00.586270800 +0000 | ||
@@ -185,7 +185,7 @@ | ||
ENDIF (NOT UNIX AND NOT CYGWIN AND NOT MINGW) | ||
SET (H5_HAVE_FUNCTION 1) | ||
SET (H5_GETTIMEOFDAY_GIVES_TZ 1) | ||
- SET (H5_HAVE_TIMEZONE 1) | ||
+ SET (H5_HAVE_TIMEZONE 0) | ||
SET (H5_HAVE_GETTIMEOFDAY 1) | ||
SET (H5_LONE_COLON 0) | ||
IF (MINGW) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters