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
On raspbian, hdf5.h and libhdf5_hl.so is under different path from Ubuntu.
hdf5.h
libhdf5_hl.so
// Copyright ©2017 The Gonum Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package hdf5 // #cgo LDFLAGS: -lhdf5 -lhdf5_hl // #cgo darwin CFLAGS: -I/usr/local/include // #cgo darwin LDFLAGS: -L/usr/local/lib // #cgo linux CFLAGS: -I/usr/local/include, -I/usr/lib/x86_64-linux-gnu/hdf5/serial/include // #cgo linux LDFLAGS: -L/usr/local/lib, -L/usr/lib/x86_64-linux-gnu/hdf5/serial/ // #cgo linux arm CFLAGS: -I/usr/local/include, -I/usr/lib/arm-linux-gnueabihf/hdf5/serial/include/ // #cgo linux arm LDFLAGS: -L/usr/local/lib, -L/usr/lib/arm-linux-gnueabihf/hdf5/serial/ // #include "hdf5.h" import "C"
The text was updated successfully, but these errors were encountered:
pull request as #42 .
Sorry, something went wrong.
No branches or pull requests
On raspbian,
hdf5.h
andlibhdf5_hl.so
is under different path from Ubuntu.The text was updated successfully, but these errors were encountered: