-
Notifications
You must be signed in to change notification settings - Fork 78
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 with GO111MODULE=on #47
Comments
Yeah, this issue is discussed here: golang/go#28435. I am also having this problem. It appears that the Go package resolver interprets the repository name as a major release branch because it starts with |
So aside from being a total blocker rn until it's patched I suppose the only real way to handle this is change GO111MODULE to off? I'm honestly blown away that this is an issue. Wow. |
@ddibiase any news on it? |
@olegsu I forked this one and include precompiled 6.3 with it. https://github.com/joesonw/js8 . Now you can directly |
@joesonw Thanks for that! Unfortunately it still doesn't work for me:
|
@ConradIrwin ts seems like that this was a cached old version. Do you happen to use |
@joesonw thanks, specifying 'github.com/joesonw/js8 6.3.292.48.1-bazel-2019-10-19-16-00' in my |
I'm having some trouble with enabling GO111MODULE=on. I was able to go through the whole process of setting up the repository and building V8 from scratch. When I run
go test
I get the following result:I installed the package at
$GOPATH/src/github.com/augustoroman/v8
. Everything seems to work well on OS X so far. However when I attempt importing withimport "github.com/augustoroman/v8"
in my own separate project I got a complaint. Remembering back I realized that I haveGO111MODULE=on
enabled. This prompted me to add a go.mod with the following in the root of the v8 folder:When I attempt running I get another error:
Any suggestions on how to resolve this issue?
The text was updated successfully, but these errors were encountered: