We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bonjour Mr. Marguinaud,
my netcdf is at the very boring place of /usr/include/netcdf.h
/usr/include/netcdf.h
#include <netcdf> in GeoPoints.cc isn't enough because g++ -fPIC -fopenmp -std=c++11 -Wall -O2 -DGLGRIB_USE_GLFW -o glfw/GeoPoints.o -c GeoPoints.cc -I../../include doesn't look at /usr/include
#include <netcdf>
g++ -fPIC -fopenmp -std=c++11 -Wall -O2 -DGLGRIB_USE_GLFW -o glfw/GeoPoints.o -c GeoPoints.cc -I../../include
How do add more paths to -I ?
The text was updated successfully, but these errors were encountered:
Hello,
I think you need to install the C++ package for netcdf (libraries & headers). netcdf.h is for C only.
If you want to pass extra flags to the C++ compiler, you can do :
make CXXFLAGS_USER="-I/path/to/netcdf/include"
Regards,
Philippe
Sorry, something went wrong.
Oh, it works!
BTW: Is glgrib-install.sh somewhere? Maybe I'm blind, can't find a proper make install option.
glgrib-install.sh
make install
No there is no make install. Just unpack & build where you want to have it installed.
Soon (I do not know when) there will be some debian packages for glgrib.
No branches or pull requests
Bonjour Mr. Marguinaud,
my netcdf is at the very boring place of
/usr/include/netcdf.h
#include <netcdf>
in GeoPoints.cc isn't enough becauseg++ -fPIC -fopenmp -std=c++11 -Wall -O2 -DGLGRIB_USE_GLFW -o glfw/GeoPoints.o -c GeoPoints.cc -I../../include
doesn't look at /usr/include
How do add more paths to -I ?
The text was updated successfully, but these errors were encountered: