Hi everyone,
I’m having trouble getting a simple plplot example program to compile. I’m on Ubuntu 20.10 and using gfortran with pkg-config --libs --cflags plplot-fortran
to set up the flags.
The error I’m getting is
6 | call plparseopts(PL_PARSE_FULL)
| 1
Error: There is no specific subroutine for the generic ‘plparseopts’ at (1)
which, I think means that my call doesn’t match any specific subroutines in the plparseopts
interface, but I’m not sure why that would be / what I’m doing wrong.
A minimum example to reproduce this is:
program plotgraph
use plplot
implicit none
call plparseopts(PL_PARSE_FULL)
end program plotgraph
Any tips from those more familiar with the library? Thanks