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
gfortran 10 and newer leads to this compile error:
/opt/SpLLT/src/spllt_kernels_mod.F90:1505:61: 1505 | -one, csrc(bcptr), n1, rsrc(brptr), n1, zero, buffer, col_list_sz) | 1 ...... 2206 | buffer(1+col_list_sz*ndiag), col_list_sz) | 2 Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1) make[3]: *** [src/CMakeFiles/spllt.dir/build.make:166: src/CMakeFiles/spllt.dir/spllt_kernels_mod.F90.o] Error 1 make[2]: *** [CMakeFiles/Makefile2:210: src/CMakeFiles/spllt.dir/all] Error 2 make[1]: *** [CMakeFiles/Makefile2:217: src/CMakeFiles/spllt.dir/rule] Error 2 make: *** [Makefile:176: spllt] Error 2
Can be fixed by adding -fallow-argument-mismatch to CMAKE_Fortran_FLAGS:
-fallow-argument-mismatch
CMAKE_Fortran_FLAGS
SpLLT/CMakeLists.txt
Lines 86 to 92 in 08a181d
Reference: scipy/scipy#11611
The text was updated successfully, but these errors were encountered:
Simply passing -DCMAKE_Fortran_FLAGS="-fallow-argument-mismatch" to cmake solves the problem
-DCMAKE_Fortran_FLAGS="-fallow-argument-mismatch"
cmake
Sorry, something went wrong.
No branches or pull requests
gfortran 10 and newer leads to this compile error:
Can be fixed by adding
-fallow-argument-mismatch
toCMAKE_Fortran_FLAGS
:SpLLT/CMakeLists.txt
Lines 86 to 92 in 08a181d
Reference: scipy/scipy#11611
The text was updated successfully, but these errors were encountered: