-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
Issue when importing h3 package #16
Comments
hi @nsehgal - thanks for raising! In your Alternatively, you can set this for h3 only by adding a project override:
|
Hi @joegilley. Thanks for your reply. It solved the issue. |
@joegilley hello, this issue reproduces with go modules and vendored dependencies: package main
import _ "github.com/uber/h3-go"
func main() {} > go mod vendor -v
# github.com/uber/h3-go v3.0.1+incompatible
github.com/uber/h3-go
> go build -mod=vendor
# github.com/uber/h3-go
../vendor/github.com/uber/h3-go/h3.go:27:10: fatal error: 'h3api.h' file not found
#include <h3api.h>
^~~~~~~~~
1 error generated. |
I imported uber h3 backage but getting this error on build
# voyager/vendor/github.com/uber/h3-go vendor/github.com/uber/h3-go/h3.go:27:10: fatal error: 'h3api.h' file not found #include <h3api.h> ^~~~~~~~~ 1 error generated.
Using dep for dependencies.
Thanks for the help.
The text was updated successfully, but these errors were encountered: