We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d6c7b commit 6a90ad5Copy full SHA for 6a90ad5
src/fpm_compiler.f90
@@ -453,7 +453,9 @@ function get_compiler_id(compiler) result(id)
453
integer :: stat, io
454
455
! Check whether we are dealing with an MPI compiler wrapper first
456
- if (check_compiler(compiler, "mpifort")) then
+ if (check_compiler(compiler, "mpifort") &
457
+ & .or. check_compiler(compiler, "mpif90") &
458
+ & .or. check_compiler(compiler, "mpif77")) then
459
output = get_temp_filename()
460
call run(compiler//" -showme:command > "//output//" 2>&1", &
461
& echo=.false., exitstat=stat)
0 commit comments