File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11submodule(sp_smart_pointer_m) sp_smart_pointer_s
2+ #ifdef XLF
3+ use sp_reference_counter_m, only : sp_reference_counter_t
4+ #endif
25 implicit none
36
47contains
Original file line number Diff line number Diff line change @@ -232,7 +232,9 @@ function fpm_compiler_arguments() result(args)
232232 else if (scan (compiler_identity, " NAG" )==1 ) then
233233 args = " --compiler nagfor --flag -fpp"
234234 else if (scan (compiler_identity, " Intel" )==1 ) then
235- args = " --compiler ifort --flag -coarray=shared"
235+ args = " --compiler ifort --flag"
236+ else if (scan (compiler_identity, " IBM" )==1 ) then
237+ args = " --compiler xlf2003_r --flag -DXLF"
236238 else
237239 error stop " ----> Unrecognized compiler_version() in function fpm_compiler_arguments. <----"
238240 end if
You can’t perform that action at this time.
0 commit comments