Skip to content

Commit

Permalink
Merge pull request #1833 from ax3l/doc-endianReverse
Browse files Browse the repository at this point in the history
Docs: Update ADIOS2_USE_Endian_Reverse
  • Loading branch information
Chuck Atkins authored Oct 16, 2019
2 parents 913d120 + 9210b86 commit b29c367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/user_guide/source/setting_up/source/cmake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ VAR VALUE Description
``ADIOS2_USE_MGARD`` **ON**/OFF `MGARD <https://github.com/CODARcode/MGARD>`_ compression (experimental).
``ADIOS2_USE_PNG`` **ON**/OFF `PNG <https://libpng.org>`_ compression (experimental).
``ADIOS2_USE_Blosc`` **ON**/OFF `Blosc <http://blosc.org/>`_ compression (experimental).
``ADIOS2_USE_Endian_Reverse`` ON/**OFF** Big/Little Endian Interoperability for different endianness platforms at write and read.
``ADIOS2_USE_Endian_Reverse`` ON/**OFF** Enable endian conversion if a different endianness is detected between write and read.
============================= ================ ==========================================================================================================================================================================================================================

In addition to the ``ADIOS2_USE_Feature`` options, the following options are also available to control how the library gets built:
Expand Down
2 changes: 1 addition & 1 deletion source/adios2/engine/bp4/BP4Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ void BP4Writer::InitBPBuffer()
throw std::runtime_error(
"ERROR: previous run generated BigEndian bp file, "
"this version of ADIOS2 wasn't compiled "
"with the cmake flag -DADIOS2_USE_ENDIAN_REVERSE=ON "
"with the cmake flag -DADIOS2_USE_Endian_Reverse=ON "
"explicitly, in call to Open\n");
}
const size_t pos_last_step = preMetadataIndexFileSize - 64;
Expand Down

0 comments on commit b29c367

Please sign in to comment.