File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,8 @@ build_gcc() {
153
153
esac
154
154
# some distributions like Ubuntu bionic implements std par with TBB, so conditionally link it here
155
155
run_build $name " ${GCC_CXX:? } " std " $cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA17"
156
- run_build $name " ${GCC_CXX:? } " std " $cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA23"
156
+ # Requires GCC 14 and newer CMake for C++23 support
157
+ # run_build $name "${GCC_CXX:?}" std "$cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA23"
157
158
run_build $name " ${GCC_CXX:? } " std " $cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=INDICES"
158
159
done
159
160
@@ -252,7 +253,7 @@ build_clang() {
252
253
* ) dpl_conditional_flags=" -DFETCH_ONEDPL=ON -DFETCH_TBB=ON -DUSE_TBB=ON -DCXX_EXTRA_FLAGS=-D_GLIBCXX_USE_TBB_PAR_BACKEND=0" ;;
253
254
esac
254
255
run_build $name " ${CLANG_CXX:? } " std " $cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA17"
255
- # Requires GCC 14
256
+ # Requires GCC 14 and newer CMake for C++23 support
256
257
# run_build $name "${CLANG_CXX:?}" std "$cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA23"
257
258
run_build $name " ${CLANG_CXX:? } " std " $cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=INDICES"
258
259
done
@@ -272,7 +273,7 @@ build_nvhpc() {
272
273
local name=" nvhpc_build"
273
274
local cxx=" -DCMAKE_CXX_COMPILER=${NVHPC_NVCXX:? } "
274
275
run_build $name " ${NVHPC_NVCXX:? } " std " $cxx -DNVHPC_OFFLOAD=$NV_ARCH_CCXY -DSTDIMPL=DATA17"
275
- # Requires GCC 14
276
+ # Requires GCC 14 and newer CMake for C++23 support
276
277
# run_build $name "${NVHPC_NVCXX:?}" std "$cxx -DNVHPC_OFFLOAD=$NV_ARCH_CCXY -DSTDIMPL=DATA23"
277
278
run_build $name " ${NVHPC_NVCXX:? } " std " $cxx -DNVHPC_OFFLOAD=$NV_ARCH_CCXY -DSTDIMPL=INDICES"
278
279
You can’t perform that action at this time.
0 commit comments