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
The current release (r14) will not build on FreeBSD 12.1.
The first error is that make cannot find netcdf.h. Once that issue was solved for, make was unable to link libraries.
make
After some experimenting...I found the following to work for me:
Modified the CMakeFileLists.txt to include: include_directories(/usr/local/include) FILE(GLOB Netcdf_LIBRARIES "/usr/local/lib/libnetcdf.so")
The text was updated successfully, but these errors were encountered:
Thank you for sharing. I added a link to this issue in the readme file to help other FreeBSD users.
Sorry, something went wrong.
No branches or pull requests
The current release (r14) will not build on FreeBSD 12.1.
The first error is that
make
cannot find netcdf.h. Once that issue was solved for,make
was unable to link libraries.After some experimenting...I found the following to work for me:
Modified the CMakeFileLists.txt to include:
include_directories(/usr/local/include)
FILE(GLOB Netcdf_LIBRARIES "/usr/local/lib/libnetcdf.so")
The text was updated successfully, but these errors were encountered: