Skip to content

Commit fb52c11

Browse files
committed
fixup
1 parent 1199c83 commit fb52c11

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: src/ci-test-compile.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ build_gcc() {
153153
esac
154154
# some distributions like Ubuntu bionic implements std par with TBB, so conditionally link it here
155155
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"
157158
run_build $name "${GCC_CXX:?}" std "$cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=INDICES"
158159
done
159160

@@ -252,7 +253,7 @@ build_clang() {
252253
*) dpl_conditional_flags="-DFETCH_ONEDPL=ON -DFETCH_TBB=ON -DUSE_TBB=ON -DCXX_EXTRA_FLAGS=-D_GLIBCXX_USE_TBB_PAR_BACKEND=0" ;;
253254
esac
254255
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
256257
# run_build $name "${CLANG_CXX:?}" std "$cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=DATA23"
257258
run_build $name "${CLANG_CXX:?}" std "$cxx $dpl_conditional_flags -DUSE_ONEDPL=$use_onedpl -DSTDIMPL=INDICES"
258259
done
@@ -272,7 +273,7 @@ build_nvhpc() {
272273
local name="nvhpc_build"
273274
local cxx="-DCMAKE_CXX_COMPILER=${NVHPC_NVCXX:?}"
274275
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
276277
# run_build $name "${NVHPC_NVCXX:?}" std "$cxx -DNVHPC_OFFLOAD=$NV_ARCH_CCXY -DSTDIMPL=DATA23"
277278
run_build $name "${NVHPC_NVCXX:?}" std "$cxx -DNVHPC_OFFLOAD=$NV_ARCH_CCXY -DSTDIMPL=INDICES"
278279

0 commit comments

Comments
 (0)