diff options
| author | Alexey Bataev <a.bataev@hotmail.com> | 2019-07-18 13:54:01 +0000 |
|---|---|---|
| committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-07-18 13:54:01 +0000 |
| commit | da43861b4a5f696b0b29c5123f92f6185e1a5899 (patch) | |
| tree | eeb065c09bf59bf591d9b7cadb42d4975ac3cb50 | |
| parent | a44b216036c14a6787626258933ad02719e23ae0 (diff) | |
| download | bcm5719-llvm-da43861b4a5f696b0b29c5123f92f6185e1a5899.tar.gz bcm5719-llvm-da43861b4a5f696b0b29c5123f92f6185e1a5899.zip | |
[OpenMP][libomptarget] Suppress C++ 11 related warnings when building libomptarget-nvptx bitcode library, by Doru Bercea.
Summary: Pass -std=c++11 flag to compiler to suppress C++ 11 related warnings when building NVPTX bitcode library.
Reviewers: ABataev, caomhin, Hahnfeld
Reviewed By: ABataev, Hahnfeld
Subscribers: jdoerfert, Hahnfeld, jholewinski, mgorny, guansong, openmp-commits
Tags: #openmp
Differential Revision: https://reviews.llvm.org/D55772
llvm-svn: 366438
| -rw-r--r-- | openmp/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake b/openmp/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake index f03567a4ba4..538bf927749 100644 --- a/openmp/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake +++ b/openmp/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake @@ -78,7 +78,7 @@ endfunction() # These flags are required to emit LLVM Bitcode. We check them together because # if any of them are not supported, there is no point in finding out which are. -set(compiler_flags_required -emit-llvm -O1 --cuda-device-only --cuda-path=${CUDA_TOOLKIT_ROOT_DIR}) +set(compiler_flags_required -emit-llvm -O1 --cuda-device-only -std=c++11 --cuda-path=${CUDA_TOOLKIT_ROOT_DIR}) set(compiler_flags_required_src "extern \"C\" __device__ int thread() { return threadIdx.x; }") check_bitcode_compilation(LIBOMPTARGET_NVPTX_CUDA_COMPILER_SUPPORTS_FLAGS_REQUIRED "${compiler_flags_required_src}" ${compiler_flags_required}) |

