We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The test for gcc version in the configure script, when setting sym_openmp, does not work for gcc version 10:
sym_openmp
g++*) sym_openmp=true fopenmp_version=4.2 gcc_required_version=`echo ${fopenmp_version} | sed -e 's/\./0/g'` get_gcc_version=`$CXX -dumpversion` gcc_version=`echo ${get_gcc_version} | sed -e 's/\./0/g'` major_gcc_version=`echo ${gcc_version:0:3}` #AC_MSG_RESULT([$get_gcc_version]) if test ${major_gcc_version} -lt ${gcc_required_version}; then echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 sym_openmp=false else echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 sym_openmp=true fi ;;
gcc -dumpversion
The simple user workaround is to explicitly build with --enable-openmp
--enable-openmp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The test for gcc version in the configure script, when setting
sym_openmp
, does not work for gcc version 10:gcc -dumpversion
returns simply "10" so there is no '.' to replace with a '0', so major_gcc_version = "10" not "1000" as required.The simple user workaround is to explicitly build with
--enable-openmp
The text was updated successfully, but these errors were encountered: