Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Update ADIOS2_USE_Endian_Reverse #1833

Merged
merged 1 commit into from
Oct 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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