-
Notifications
You must be signed in to change notification settings - Fork 751
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
not support export GO111MODULE=on #755
Comments
I'm also having issues building with go module on, I'm using go1.11.4. Any fix yet? |
If you are behind the GFW, please take a look here #808 (comment) Okay with e73768b something like the following should work. git clone https://github.com/myName/myProject.git
cd ./myProject
go mod download && go get -u -v github.com/therecipe/qt/cmd/qtsetup && go get -u -v github.com/therecipe/qt/cmd/...
go mod vendor && cd ./vendor/github.com/therecipe && git clone https://github.com/therecipe/env_$(go env GOOS)_amd64_512.git && cd ../../.. (replace the last line with go mod vendor && cd ./vendor/github.com/therecipe && git clone https://github.com/therecipe/env_windows_amd64_512.git && cd ../../.. on windows) then you can either run or run and now a tiny rant ... If I could, I would make git clone https://github.com/myName/myProject.git && cd ./myProject
go mod download && go get -u -v github.com/therecipe/qt/cmd/... && $HOME/go/bin/qtdeploy work for you, however there are several issues preventing me from doing so one minor issue is due the immaturity of the module support in general and might be fixed at some point:
instead of
the bigger issue is however the removal of symlinks: golang/go#24057 (comment) there is some really ugly way to hack around this, by simply duplicating the binaries instead of using symlinks, however this is not possible due the arbitrary size limitation of go modules: golang/go#29210 also some other issues I encountered along the way: you will need to use
instead of
which forces you to download the also, golang/go#29452 which causes |
Modules should be supported now with e73768b, take a look here #755 (comment) I will close this now, but please open an issue if you encounter any issues using them |
it is maybe more simple |
when export GO111MODULE=on with go1.11 and go1.12, this package will not work, when to support go modules methods
The text was updated successfully, but these errors were encountered: