You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I setup Kokkos with the IBM XL 13.1.4 compiler as follows, CXX=xlc++ ../../generate_makefile.bash --prefix=$PWD/.. --with-openmp --arch=Power8
it sets --std=c++11 in Makefile.kokkos.
This causes any user code to fail to build with warning: 1501-257 Option std=c++11 is not recognized. Option will be ignored.
The xlc++ --help page says the flag should be -std=c++11.
This is using Kokkos at the 2.02.01 tag.
The text was updated successfully, but these errors were encountered:
If I setup Kokkos with the IBM XL 13.1.4 compiler as follows,
CXX=xlc++ ../../generate_makefile.bash --prefix=$PWD/.. --with-openmp --arch=Power8
it sets
--std=c++11
inMakefile.kokkos
.This causes any user code to fail to build with
warning: 1501-257 Option std=c++11 is not recognized. Option will be ignored.
The
xlc++ --help
page says the flag should be-std=c++11
.This is using Kokkos at the
2.02.01
tag.The text was updated successfully, but these errors were encountered: