Hi,
I am using ubuntu 18.04 and gfortran 7.5 and I am not sure which path I have to choose for LDOPTIONS in makefile.in. I installed libx11-dev.
In the makefile.in, there are "some common cases", i.e.
# GNU
# LDOPTIONS = -L/opt/local/lib -lX11 -lm
# LDOPTIONS = -L/opt/local/lib -lX11 -lblas -llapack -lm
# LDOPTIONS = -L/usr/X11R6/lib -lX11 -lblas -llapack -ljpeg -lm
I do not have a folder /usr/X11R6 and I do not have a folder /opt/local/lib. I have a folder /usr/lib/X11 and so I tried using
LDOPTIONS = -L/usr/lib/X11 -lX11 -lblas -llapack -ljpeg -lm
and
LDOPTIONS = -L/usr/lib/ -lX11 -lblas -llapack -ljpeg -lm
Both these variants do not work. Addiitionally, the 3 variants above do not work. By saying "do not work", I mean that there is an error which indicited a problem in LDOPTIONS.
Before I try to do some experiments on ljpeg and so on, I first want to check if the path is correct.
Kind regards
EDIT: libjpeg-dev is installed, too