This line in the source file src/lib/flap_command_line_interface_t.F90
1540 pos = index(basename, '\', back=.true.)
gives an error about a mis-matched single-quote from the NVHPC compiler.
I can make the problem go away by replacing the line with
1540 pos = index(basename, '\\', back=.true.)
I'm not sure what the best source-code fix would really be, though. I assume the Intel & GNU compilers didn't have this issue.
This line in the source file
src/lib/flap_command_line_interface_t.F90gives an error about a mis-matched single-quote from the NVHPC compiler.
I can make the problem go away by replacing the line with
I'm not sure what the best source-code fix would really be, though. I assume the Intel & GNU compilers didn't have this issue.