diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-07-04 08:36:25 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-07-17 09:22:54 (GMT) |
commit | 1da40c3a2b2d3809871bcdbafe9c13f337ee1e88 (patch) | |
tree | 8a15310872624e44b5d41a91c11ca6af120609aa /BuildTNG.cmake | |
parent | e6e85d562829bcae40f9b360937b491699736b92 (diff) |
Rewrite of file i/o.
Do not read and write data blocks in whole chunks. Read and
write value by value and do the md5 summing in steps.
This hopefully avoids memory alignment problems reported
on ARM architectures.
Fixed a bug freeing trajectory mapping memory.
Change-Id: I3438b3d3faf5349dcd477a31cfb4bacf236ed582
Diffstat (limited to 'BuildTNG.cmake')
-rw-r--r-- | BuildTNG.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTNG.cmake b/BuildTNG.cmake index ea77430..723eac0 100644 --- a/BuildTNG.cmake +++ b/BuildTNG.cmake @@ -5,7 +5,7 @@ set(TNG_ROOT_BINARY_DIR ${CMAKE_BINARY_DIR}/${TNG_ROOT_BINARY_DIR}) function (TNG_GENERATE_VERSION_H) set(TNG_MAJOR_VERSION "1") set(TNG_MINOR_VERSION "6") - set(TNG_VERSION_PATCH_LEVEL "1") + set(TNG_VERSION_PATCH_LEVEL "2") set(TNG_IO_VERSION "${TNG_MAJOR_VERSION}.${TNG_MINOR_VERSION}.${TNG_VERSION_PATCH_LEVEL}") set(TNG_API_VERSION "6") configure_file(${TNG_ROOT_SOURCE_DIR}/include/tng/version.h.in |