diff options
author | Brad King <brad.king@kitware.com> | 2020-11-03 21:57:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-11-04 15:08:13 (GMT) |
commit | f511a1c00912f3e1d368a423b07bd1a1ab57fab3 (patch) | |
tree | e4feec49632b94694eb09fbfaef8cc57debf0aec /Modules/CMakeCUDACompilerABI.cu | |
parent | 606b34b3a6eeac1bcd64c274b5407cc2cd6be2bd (diff) | |
download | CMake-f511a1c00912f3e1d368a423b07bd1a1ab57fab3.zip CMake-f511a1c00912f3e1d368a423b07bd1a1ab57fab3.tar.gz CMake-f511a1c00912f3e1d368a423b07bd1a1ab57fab3.tar.bz2 |
CMakeDetermineCompilerABI: Detect byte order as part of check
We already detect `sizeof(void*)`. Detect the byte order as part of the
same check.
Issue: #21392
Diffstat (limited to 'Modules/CMakeCUDACompilerABI.cu')
-rw-r--r-- | Modules/CMakeCUDACompilerABI.cu | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/CMakeCUDACompilerABI.cu b/Modules/CMakeCUDACompilerABI.cu index 702a7c5..449a079 100644 --- a/Modules/CMakeCUDACompilerABI.cu +++ b/Modules/CMakeCUDACompilerABI.cu @@ -8,6 +8,8 @@ int main(int argc, char* argv[]) { int require = 0; require += info_sizeof_dptr[argc]; + require += info_byte_order_big_endian[argc]; + require += info_byte_order_little_endian[argc]; #if defined(ABI_ID) require += info_abi[argc]; #endif |