-
Notifications
You must be signed in to change notification settings - Fork 754
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
deploy fail with go mod on windows10 #808
Comments
Hey This seems to be related to these go mod issues golang/go#28652 and golang/go#27859 I made some changes with 6803925 which might solve this. But I couldn't test it because blocking Please let me know if this works, or if I need to replace some other packages as well. |
replaced |
Thanks @therecipe ,but It still goes to golang.org,even if I add : go.mod go 1.12
require github.com/therecipe/qt v0.0.0-20190327012755-3dab3e932dc2
require golang.org/x/tools v0.0.0-20190327011446-79af862e6737 // indirect
replace golang.org/x/crypto => github.com/golang/crypto v0.0.0-20190325154230-a5d413f7728c
replace golang.org/x/net => github.com/golang/net v0.0.0-20190326090315-15845e8f865b
replace golang.org/x/sys => github.com/golang/sys v0.0.0-20190322080309-f49334f85ddc
replace golang.org/x/tools => github.com/golang/tools v0.0.0-20190327011446-79af862e6737
replace golang.org/x/text => github.com/golang/text v0.3.1-0.20190321115727-fe223c5a2583
the result: E:\Go_modules\qt_binding> go get -u -v github.com/therecipe/qt/cmd/qtsetup
go: finding github.com/therecipe/qt/cmd/qtsetup latest
go: finding github.com/therecipe/qt/cmd latest
Fetching https://golang.org/x/tools?go-get=1
Fetching https://golang.org/x/sys?go-get=1
Fetching https://golang.org/x/text?go-get=1
Fetching https://golang.org/x/crypto?go-get=1
Fetching https://golang.org/x/net?go-get=1
E:\Go_modules\qt_binding>go version
go version go1.12.1 windows/amd64
My golang compiler is already version 1.12.1. according to
The Bug of issues golang/go#28652 and golang/go#27859 should has been fixed.
E:\Go_modules\qt_binding>go mod download
go: finding github.com/therecipe/qt v0.0.0-20190327012755-3dab3e932dc2
go: finding github.com/golang/tools v0.0.0-20190327011446-79af862e6737
go: finding github.com/golang/net v0.0.0-20190326090315-15845e8f865b
go: finding github.com/golang/text v0.3.1-0.20190321115727-fe223c5a2583
go: finding github.com/golang/crypto v0.0.0-20190325154230-a5d413f7728c
go: finding github.com/golang/sys v0.0.0-20190322080309-f49334f85ddc
go: finding github.com/gopherjs/gopherjs v0.0.0-20190309154008-847fc94819f9
BTW, E:\Go_modules\qt_binding>go get -u -v github.com/therecipe/qt/cmd/...
go: finding github.com/therecipe/qt latest
go: finding github.com/gopherjs/gopherjs latest
go: warning: "github.com/therecipe/qt/cmd/..." matched no packages |
I try with therecipe/examples/tree/master/basic/quick example: write go.mod : go.mod: module qt_demo
go 1.12
require github.com/therecipe/qt v0.0.0-20190327012755-3dab3e932dc2
then run command(GOPATH=E:\Go):
the detailed result see below : go mod download (success) go get -u -v github.com/therecipe/qt/cmd/qtsetup (failed.) go get -u -v github.com/therecipe/qt/cmd/... ("github.com/therecipe/qt/cmd/..." matched no packages) E:\Go_modules\qt_binding>go mod download
go: finding github.com/therecipe/qt latest
go: finding github.com/gopherjs/gopherjs v0.0.0-20190309154008-847fc94819f9
E:\Go_modules\qt_binding>go get -u -v github.com/therecipe/qt/cmd/qtsetup
go: finding github.com/therecipe/qt/cmd/qtsetup latest
go: finding github.com/therecipe/qt/cmd latest
go: downloading github.com/therecipe/qt/cmd v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/cmd v0.0.0-20190327012755-3dab3e932dc2
Fetching https://golang.org/x/tools?go-get=1
https fetch failed: Get https://golang.org/x/tools?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
go: golang.org/x/[email protected]: unrecognized import path "golang.org/x/tools" (https fetch: Get https://golang.org/x/tools?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)
go get: error loading module requirements
E:\Go_modules\qt_binding>go get -u -v github.com/therecipe/qt/cmd/...
go: finding github.com/therecipe/qt latest
go: finding github.com/gopherjs/gopherjs latest
go: warning: "github.com/therecipe/qt/cmd/..." matched no packages
install env (success) E:\Go\pkg\mod\github.com\therecipe\qt\c[email protected]\env>go install
go: finding github.com/golang/tools v0.0.0-20190327011446-79af862e6737
go: finding github.com/golang/net v0.0.0-20190326090315-15845e8f865b
go: finding github.com/golang/crypto v0.0.0-20190325154230-a5d413f7728c
go: finding github.com/golang/text v0.3.1-0.20190321115727-fe223c5a2583
go: finding github.com/golang/sys v0.0.0-20190322080309-f49334f85ddc
go: finding github.com/therecipe/env_windows_amd64_512 latest
go: downloading github.com/therecipe/env_windows_amd64_512 v0.0.0-20190121195954-78ba6026af9b
go: extracting github.com/therecipe/env_windows_amd64_512 v0.0.0-20190121195954-78ba6026af9b
go: finding github.com/therecipe/env_windows_amd64_512/Tools latest
go: downloading github.com/therecipe/env_windows_amd64_512/Tools v0.0.0-20190121195954-78ba6026af9b
go: extracting github.com/therecipe/env_windows_amd64_512/Tools v0.0.0-20190121195954-78ba6026af9b
install qtdeploy (success) E:\Go\pkg\mod\github.com\therecipe\qt\c[email protected]\qtdeploy>go install
go: finding github.com/therecipe/qt/internal/utils latest
go: finding github.com/therecipe/qt/internal/cmd/deploy latest
go: finding github.com/therecipe/qt/internal/cmd latest
go: finding github.com/therecipe/qt/internal latest
go: downloading github.com/therecipe/qt/internal v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal v0.0.0-20190327012755-3dab3e932dc2
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/sirupsen/logrus v1.4.0
go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.2
go: finding github.com/konsorten/go-windows-terminal-sequences v1.0.1
go: finding github.com/stretchr/testify v1.2.2
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/stretchr/objx v0.1.1
go: finding github.com/davecgh/go-spew v1.1.1
go: finding github.com/stretchr/objx v0.1.0
go: finding github.com/davecgh/go-spew v1.1.0
go: downloading github.com/golang/crypto v0.0.0-20190325154230-a5d413f7728c
go: downloading github.com/sirupsen/logrus v1.4.0
go: finding github.com/therecipe/qt/internal/binding/files/docs latest
go: downloading github.com/golang/tools v0.0.0-20190327011446-79af862e6737
go: downloading github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/sirupsen/logrus v1.4.0
go: downloading github.com/konsorten/go-windows-terminal-sequences v1.0.2
go: extracting github.com/golang/crypto v0.0.0-20190325154230-a5d413f7728c
go: extracting github.com/konsorten/go-windows-terminal-sequences v1.0.2
go: extracting github.com/golang/tools v0.0.0-20190327011446-79af862e6737
go: extracting github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20190327012755-3dab3e932dc2
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.11.1 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.8.0 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.7.0 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.10.0 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.6.3 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.12.0 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.9.0 latest
go: finding github.com/therecipe/qt/internal/binding/files/docs/5.7.1 latest
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20190327012755-3dab3e932dc2
go: downloading github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20190327012755-3dab3e932dc2
go: extracting github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20190327012755-3dab3e932dc2 go mod vendor -v (success) E:\Go_modules\qt_binding>go mod vendor -v
# github.com/gopherjs/gopherjs v0.0.0-20190309154008-847fc94819f9
github.com/gopherjs/gopherjs/js
# github.com/therecipe/qt v0.0.0-20190327012755-3dab3e932dc2
github.com/therecipe/qt/core
github.com/therecipe/qt/quick
github.com/therecipe/qt/quickcontrols2
github.com/therecipe/qt/widgets
github.com/therecipe/qt
github.com/therecipe/qt/gui
github.com/therecipe/qt/qml
github.com/therecipe/qt/network
E:\Go_modules\qt_binding>cd ./vendor/github.com/therecipe && git clone https://github.com/therecipe/env_windows_amd64_512.git && cd ../../..
Cloning into 'env_windows_amd64_512'...
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 18365 (delta 2), reused 10 (delta 2), pack-reused 18350
Receiving objects: 100% (18365/18365), 158.58 MiB | 2.18 MiB/s, done.
Resolving deltas: 100% (6708/6708), done.
Checking out files: 100% (23942/23942), done. qtsetup (failed both cmd and powershell) E:\Go_modules\qt_binding>qtsetup
time="2019-03-27T12:56:42+08:00" level=warning msg="failed to create qtenv.bat symlink in your PATH (G:\\Go\\bin\\qtenv.bat); please use E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qtenv2.bat instead"
time="2019-03-27T12:56:42+08:00" level=info msg="running: 'qtsetup prep'"
time="2019-03-27T12:56:42+08:00" level=warning msg="failed to create qtrcc symlink in your PATH (G:\\Go\\bin\\qtrcc.exe); please use E:\\Go\\bin\\qtrcc.exe instead"
time="2019-03-27T12:56:42+08:00" level=warning msg="failed to create qtmoc symlink in your PATH (G:\\Go\\bin\\qtmoc.exe); please use E:\\Go\\bin\\qtmoc.exe instead"
time="2019-03-27T12:56:42+08:00" level=warning msg="failed to create qtminimal symlink in your PATH (G:\\Go\\bin\\qtminimal.exe); please use E:\\Go\\bin\\qtminimal.exe instead"
time="2019-03-27T12:56:42+08:00" level=warning msg="failed to create qtdeploy symlink in your PATH (G:\\Go\\bin\\qtdeploy.exe); please use E:\\Go\\bin\\qtdeploy.exe instead"
time="2019-03-27T12:56:42+08:00" level=info msg="running: 'qtsetup check windows' [docker=false] [vagrant=false]"
time="2019-03-27T12:56:43+08:00" level=info msg="GOOS: 'windows'"
time="2019-03-27T12:56:43+08:00" level=info msg="GOARCH: 'amd64'"
time="2019-03-27T12:56:43+08:00" level=info msg="GOVERSION: 'go1.12.1'"
time="2019-03-27T12:56:43+08:00" level=info msg="GOROOT: * 'G:\\Go\\'"
time="2019-03-27T12:56:43+08:00" level=info msg="GOPATH: * 'E:\\Go'"
time="2019-03-27T12:56:43+08:00" level=info msg="GOBIN: 'E:\\Go\\bin'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_HASH: 'fatal: not a git repository (or any of the parent directories): .git'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_API: * '5.12.0'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_VERSION: '5.12.0'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_VERSION_MAJOR: '5.12.0'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_DIR: * 'E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_STUB: 'false'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_DEBUG: 'false'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_QMAKE_DIR: ''"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_WEBKIT: 'false'"
time="2019-03-27T12:56:43+08:00" level=info msg="QT_MSYS2: 'false'"
time="2019-03-27T12:56:43+08:00" level=info msg="running: 'qtsetup generate windows' [docker=false] [vagrant=false]"
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=AndroidExtras
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=DBus
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=ScriptTools
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=UiTools
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=XmlPatterns
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=TestLib
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=Svg
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=Bluetooth
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=WebChannel
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=Sensors
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=RemoteObjects
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialPort
time="2019-03-27T12:56:43+08:00" level=warning msg=parser.LoadModule error=EOF module=Gui
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Widgets
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Core
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Help
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Scxml
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Speech
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialBus
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Script
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Nfc
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Network
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Location
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Xml
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=WebSockets
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Sql
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Gamepad
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=Purchasing
time="2019-03-27T12:56:44+08:00" level=warning msg=parser.LoadModule error=EOF module=PrintSupport
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=Multimedia
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=Designer
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=WinExtras
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=Positioning
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=Qml
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=Quick
time="2019-03-27T12:56:45+08:00" level=warning msg=parser.LoadModule error=EOF module=QuickControls2
time="2019-03-27T12:56:45+08:00" level=info msg="generating full qt/core "
time="2019-03-27T12:56:46+08:00" level=info msg="generating full qt/androidextras "
time="2019-03-27T12:56:47+08:00" level=error msg="failed to load \\binding\\files\\utils-androidextras_android.go" error="open \\binding\\files\\utils-androidextras_android.go: The system cannot find the path specified."
time="2019-03-27T12:56:47+08:00" level=info msg="generating full qt/gui "
time="2019-03-27T12:56:47+08:00" level=info msg="generating full qt/network "
time="2019-03-27T12:56:48+08:00" level=info msg="generating full qt/xml "
time="2019-03-27T12:56:49+08:00" level=info msg="generating full qt/dbus "
time="2019-03-27T12:56:49+08:00" level=info msg="generating full qt/nfc "
time="2019-03-27T12:56:50+08:00" level=info msg="generating full qt/script "
time="2019-03-27T12:56:51+08:00" level=info msg="generating full qt/sensors "
time="2019-03-27T12:56:51+08:00" level=info msg="generating full qt/positioning "
time="2019-03-27T12:56:51+08:00" level=info msg="generating full qt/widgets "
time="2019-03-27T12:56:52+08:00" level=info msg="generating full qt/sql "
time="2019-03-27T12:56:52+08:00" level=info msg="generating full qt/qml "
time="2019-03-27T12:56:53+08:00" level=info msg="generating full qt/websockets "
time="2019-03-27T12:56:53+08:00" level=info msg="generating full qt/xmlpatterns "
time="2019-03-27T12:56:54+08:00" level=info msg="generating full qt/bluetooth "
time="2019-03-27T12:56:54+08:00" level=info msg="generating full qt/webchannel "
time="2019-03-27T12:56:54+08:00" level=info msg="generating full qt/svg "
time="2019-03-27T12:56:55+08:00" level=info msg="generating full qt/multimedia "
time="2019-03-27T12:56:55+08:00" level=info msg="generating full qt/quick "
time="2019-03-27T12:56:56+08:00" level=info msg="generating full qt/help "
time="2019-03-27T12:56:56+08:00" level=info msg="generating full qt/location "
time="2019-03-27T12:56:56+08:00" level=info msg="generating full qt/scripttools "
time="2019-03-27T12:56:57+08:00" level=info msg="generating full qt/uitools "
time="2019-03-27T12:56:57+08:00" level=info msg="generating full qt/winextras "
time="2019-03-27T12:56:57+08:00" level=info msg="generating full qt/testlib "
time="2019-03-27T12:56:58+08:00" level=info msg="generating full qt/serialport "
time="2019-03-27T12:56:58+08:00" level=info msg="generating full qt/serialbus "
time="2019-03-27T12:56:59+08:00" level=info msg="generating full qt/printsupport "
time="2019-03-27T12:56:59+08:00" level=info msg="generating full qt/designer "
time="2019-03-27T12:56:59+08:00" level=info msg="generating full qt/scxml "
time="2019-03-27T12:57:00+08:00" level=info msg="generating full qt/gamepad "
time="2019-03-27T12:57:01+08:00" level=info msg="generating full qt/purchasing "
time="2019-03-27T12:57:01+08:00" level=info msg="generating full qt/datavisualization [GPLv3]"
time="2019-03-27T12:57:02+08:00" level=info msg="generating full qt/charts [GPLv3]"
time="2019-03-27T12:57:02+08:00" level=info msg="generating full qt/speech "
time="2019-03-27T12:57:02+08:00" level=info msg="generating full qt/quickcontrols2 "
time="2019-03-27T12:57:03+08:00" level=info msg="generating full qt/sailfish "
time="2019-03-27T12:57:03+08:00" level=info msg="generating full qt/remoteobjects "
time="2019-03-27T12:57:03+08:00" level=info msg="running: 'qtsetup install windows' [docker=false] [vagrant=false]"
time="2019-03-27T12:57:03+08:00" level=info msg="installing full qt/core "
time="2019-03-27T12:57:04+08:00" level=info msg="installing full qt/androidextras "
github.com/therecipe/qt/androidextras
# github.com/therecipe/qt/androidextras
vendor\github.com\therecipe\qt\androidextras\androidextras.go:11:10: undefined: QAndroidJniEnvironment
time="2019-03-27T12:57:04+08:00" level=info msg="installing full qt/gui "
time="2019-03-27T12:57:05+08:00" level=info msg="installing full qt/network "
time="2019-03-27T12:57:05+08:00" level=info msg="installing full qt/xml "
time="2019-03-27T12:57:05+08:00" level=info msg="installing full qt/dbus "
time="2019-03-27T12:57:06+08:00" level=info msg="installing full qt/nfc "
time="2019-03-27T12:57:06+08:00" level=info msg="installing full qt/script "
time="2019-03-27T12:57:06+08:00" level=info msg="installing full qt/sensors "
time="2019-03-27T12:57:07+08:00" level=info msg="installing full qt/positioning "
time="2019-03-27T12:57:07+08:00" level=info msg="installing full qt/widgets "
time="2019-03-27T12:57:07+08:00" level=info msg="installing full qt/sql "
time="2019-03-27T12:57:08+08:00" level=info msg="installing full qt/qml "
time="2019-03-27T12:57:08+08:00" level=info msg="installing full qt/websockets "
time="2019-03-27T12:57:08+08:00" level=info msg="installing full qt/xmlpatterns "
time="2019-03-27T12:57:09+08:00" level=info msg="installing full qt/bluetooth "
time="2019-03-27T12:57:09+08:00" level=info msg="installing full qt/webchannel "
time="2019-03-27T12:57:09+08:00" level=info msg="installing full qt/svg "
time="2019-03-27T12:57:10+08:00" level=info msg="installing full qt/multimedia "
time="2019-03-27T12:57:10+08:00" level=info msg="installing full qt/quick "
time="2019-03-27T12:57:10+08:00" level=info msg="installing full qt/help "
time="2019-03-27T12:57:11+08:00" level=info msg="installing full qt/location "
time="2019-03-27T12:57:11+08:00" level=info msg="installing full qt/scripttools "
time="2019-03-27T12:57:11+08:00" level=info msg="installing full qt/uitools "
time="2019-03-27T12:57:11+08:00" level=info msg="installing full qt/winextras "
time="2019-03-27T12:57:12+08:00" level=info msg="installing full qt/testlib "
time="2019-03-27T12:57:12+08:00" level=info msg="installing full qt/serialport "
time="2019-03-27T12:57:12+08:00" level=info msg="installing full qt/serialbus "
time="2019-03-27T12:57:13+08:00" level=info msg="installing full qt/printsupport "
time="2019-03-27T12:57:13+08:00" level=info msg="installing full qt/designer "
time="2019-03-27T12:57:13+08:00" level=info msg="installing full qt/scxml "
time="2019-03-27T12:57:14+08:00" level=info msg="installing full qt/gamepad "
time="2019-03-27T12:57:14+08:00" level=info msg="installing full qt/purchasing "
time="2019-03-27T12:57:14+08:00" level=info msg="installing full qt/datavisualization [GPLv3]"
time="2019-03-27T12:57:15+08:00" level=info msg="installing full qt/charts [GPLv3]"
time="2019-03-27T12:57:15+08:00" level=info msg="installing full qt/speech "
time="2019-03-27T12:57:15+08:00" level=info msg="installing full qt/quickcontrols2 "
time="2019-03-27T12:57:16+08:00" level=info msg="installing full qt/sailfish "
time="2019-03-27T12:57:16+08:00" level=info msg="installing full qt/remoteobjects "
time="2019-03-27T12:57:16+08:00" level=warning msg="failed to install:"
time="2019-03-27T12:57:16+08:00" level=warning msg=androidextras
time="2019-03-27T12:57:16+08:00" level=info msg="running: 'qtsetup test windows' [docker=false] [vagrant=false]"
time="2019-03-27T12:57:16+08:00" level=info msg="testing quick\\calc"
time="2019-03-27T12:57:16+08:00" level=error msg="failed to run command" _func=RunCmd cmd="go mod vendor" dir="quick\\calc" env= error="chdir quick\\calc: The system cannot find the path specified." name="go mod vendor" qtdeploy(failed) E:\Go_modules\qt_binding>qtdeploy
time="2019-03-27T13:00:17+08:00" level=warning msg="failed to create qtenv.bat symlink in your PATH (G:\\Go\\bin\\qtenv.bat); please use E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qtenv2.bat instead"
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Sensors
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=RemoteObjects
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Positioning
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=AndroidExtras
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=WebSockets
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=DBus
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Purchasing
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Script
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialPort
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Widgets
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Qml
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Nfc
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Gui
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Gamepad
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Help
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=PrintSupport
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Network
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=TestLib
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Bluetooth
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Sql
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Designer
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=WebChannel
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Location
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=UiTools
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Speech
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Quick
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Svg
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=XmlPatterns
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=Xml
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=QuickControls2
time="2019-03-27T13:00:27+08:00" level=warning msg=parser.LoadModule error=EOF module=WinExtras
time="2019-03-27T13:00:28+08:00" level=warning msg=parser.LoadModule error=EOF module=Core
time="2019-03-27T13:00:28+08:00" level=warning msg=parser.LoadModule error=EOF module=ScriptTools
time="2019-03-27T13:00:28+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialBus
time="2019-03-27T13:00:28+08:00" level=warning msg=parser.LoadModule error=EOF module=Multimedia
time="2019-03-27T13:00:28+08:00" level=warning msg=parser.LoadModule error=EOF module=Scxml
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xc0000005 code=0x1 addr=0x110 pc=0x83da0b]
goroutine 1 [running]:
github.com/therecipe/qt/internal/cmd/minimal.Minimal(0xc0000567e0, 0x18, 0x926e15, 0x7, 0x0, 0x0)
E:/Go/pkg/mod/github.com/therecipe/qt/[email protected]/cmd/minimal/minimal.go:247 +0x131b
github.com/therecipe/qt/internal/cmd/deploy.Deploy(0x92381d, 0x4, 0x926e15, 0x7, 0xc0000567e0, 0x18, 0xc000044800, 0x0, 0x0, 0x0, ...)
E:/Go/pkg/mod/github.com/therecipe/qt/[email protected]/cmd/deploy/deploy.go:78 +0x15a5
main.main()
E:/Go/pkg/mod/github.com/therecipe/qt/[email protected]/qtdeploy/main.go:136 +0x6d1 So what went wrong? Thanks for your help. @therecipe |
Thanks for the detailed log. It seems like Could you run something like the following inside the CGO_ENABLED=0 go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0 it should return something like:
could you also check if this dir exists on your system? Also maybe try to run and about the |
sure. but something wrong there: E:\Go_modules\qt_binding>CGO_ENABLED=0 go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0
'CGO_ENABLED' is not recognized as an internal or external command,
operable program or batch file. if don't use E:\Go_modules\qt_binding>go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0
E:\Go_modules\qt_binding>
or E:\Go_modules\qt_binding>set CGO_ENABLED=0
E:\Go_modules\qt_binding>go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0
E:\Go_modules\qt_binding> But E:\Go\pkg\mod\github.com\therecipe\qt\internal\binding\files\docs\5[email protected]2>dir
Volume in drive E is code
Volume Serial Number is 8A31-29AA
Directory of E:\Go\pkg\mod\github.com\therecipe\qt\internal\binding\files\docs\5[email protected]
03/27/2019 12:50 PM <DIR> .
03/27/2019 12:50 PM <DIR> ..
03/27/2019 12:50 PM 212,575 activeqt.index
03/27/2019 12:50 PM 66 go.mod
03/27/2019 12:50 PM 7,651 LICENSE
03/27/2019 12:50 PM 12 mod.go
03/27/2019 12:50 PM 53,033 qdoc.index
03/27/2019 12:50 PM 44,142 qmake.index
03/27/2019 12:50 PM 3,220,523 qt3d.index
03/27/2019 12:50 PM 113,726 qtandroidextras.index
03/27/2019 12:50 PM 12,603 qtassistant.index
03/27/2019 12:50 PM 2,003,725 qtbluetooth.index
03/27/2019 12:50 PM 841,747 qtcanvas3d.index
03/27/2019 12:50 PM 4,211,437 qtcharts.index
03/27/2019 12:50 PM 198,093 qtconcurrent.index
03/27/2019 12:50 PM 10,895,961 qtcore.index
03/27/2019 12:50 PM 2,944,217 qtdatavisualization.index
03/27/2019 12:50 PM 801,224 qtdbus.index
03/27/2019 12:50 PM 4,692,305 qtdesigner.index
03/27/2019 12:50 PM 1,339 qtdistancefieldgenerator.index
03/27/2019 12:50 PM 412,965 qtdoc.index
03/27/2019 12:50 PM 275,589 qtgamepad.index
03/27/2019 12:50 PM 115,621 qtgraphicaleffects.index
03/27/2019 12:50 PM 22,511,488 qtgui.index
03/27/2019 12:50 PM 314,799 qthelp.index
03/27/2019 12:50 PM 2,658 qtimageformats.index
03/27/2019 12:50 PM 155,890 qtlabscalendar.index
03/27/2019 12:50 PM 570,123 qtlabsplatform.index
03/27/2019 12:50 PM 12,932 qtlinguist.index
03/27/2019 12:50 PM 3,634,885 qtlocation.index
03/27/2019 12:50 PM 67,653 qtmacextras.index
03/27/2019 12:50 PM 8,872,589 qtmultimedia.index
03/27/2019 12:50 PM 3,273,717 qtnetwork.index
03/27/2019 12:50 PM 276,096 qtnetworkauth.index
03/27/2019 12:50 PM 743,983 qtnfc.index
03/27/2019 12:50 PM 815,382 qtopengl.index
03/27/2019 12:50 PM 64,941 qtplatformheaders.index
03/27/2019 12:50 PM 703,409 qtpositioning.index
03/27/2019 12:50 PM 500,429 qtprintsupport.index
03/27/2019 12:50 PM 274,341 qtpurchasing.index
03/27/2019 12:50 PM 8,510,948 qtqml.index
03/27/2019 12:50 PM 94,469 qtqmltest.index
03/27/2019 12:50 PM 11,888,492 qtquick.index
03/27/2019 12:50 PM 3,381,880 qtquickcontrols.index
03/27/2019 12:50 PM 1,062,098 qtquickcontrols1.index
03/27/2019 12:50 PM 362,792 qtquickdialogs.index
03/27/2019 12:50 PM 245,019 qtquickextras.index
03/27/2019 12:50 PM 988,947 qtremoteobjects.index
03/27/2019 12:50 PM 1,242,520 qtscript.index
03/27/2019 12:50 PM 1,178,026 qtscripttools.index
03/27/2019 12:50 PM 737,278 qtscxml.index
03/27/2019 12:50 PM 1,729,898 qtsensors.index
03/27/2019 12:50 PM 407,320 qtserialbus.index
03/27/2019 12:50 PM 177,277 qtserialport.index
03/27/2019 12:50 PM 316,143 qtspeech.index
03/27/2019 12:50 PM 455,030 qtsql.index
03/27/2019 12:50 PM 386,533 qtsvg.index
03/27/2019 12:50 PM 571,286 qttestlib.index
03/27/2019 12:50 PM 33,596 qtuitools.index
03/27/2019 12:50 PM 357,448 qtvirtualkeyboard.index
03/27/2019 12:50 PM 2,128,833 qtwaylandcompositor.index
03/27/2019 12:50 PM 120,068 qtwebchannel.index
03/27/2019 12:50 PM 3,024,767 qtwebengine.index
03/27/2019 12:50 PM 393,131 qtwebsockets.index
03/27/2019 12:50 PM 130,160 qtwebview.index
03/27/2019 12:50 PM 10,777,061 qtwidgets.index
03/27/2019 12:50 PM 475,575 qtwinextras.index
03/27/2019 12:50 PM 15,688 qtx11extras.index
03/27/2019 12:50 PM 388,472 qtxml.index
03/27/2019 12:50 PM 4,002,948 qtxmlpatterns.index
68 File(s) 129,437,572 bytes
2 Dir(s) 7,907,074,048 bytes free BTW, when i try E:\Go_modules\qt_binding>go list -mod=readonly -f {{.Dir}}
build qt_binding: cannot load github.com/therecipe/qt/core: no Go source files
E:\Go_modules\qt_binding\vendor\github.com\therecipe\qt\core>dir
Volume in drive E is code
Volume Serial Number is 8A31-29AA
Directory of E:\Go_modules\qt_binding\vendor\github.com\therecipe\qt\core
03/28/2019 10:23 AM <DIR> .
03/28/2019 10:23 AM <DIR> ..
03/28/2019 10:23 AM 1,349 cgo_windows_windows_amd64.go
03/28/2019 10:23 AM 139 core.cpp
03/28/2019 10:23 AM 494 core.go
03/28/2019 10:23 AM 288 core.h
4 File(s) 2,270 bytes
2 Dir(s) 7,907,041,280 bytes free |
ALLUSERSPROFILE=C:\\ProgramData ANDRIOD_SDK=C:\\Users\\lk\\AppData\\Local\\Android\\Sdk APPDATA=C:\\Users\\lk\\AppData\\Roaming CATALINA_HOME=G:\\ProgramData\\apache-tomcat-7.0.90 CLASSPATH=.;C:\\Program Files\\Java\\jdk1.8.0_192\\lib;C:\\Program Files\\Java\\jdk1.8.0_192\\lib\\dt.jar;C:\\Program Files\\Java\\jdk1.8.0_192\\lib\\tools.jar CommonProgramFiles=C:\\Program Files\\Common Files CommonProgramFiles(x86)=C:\\Program Files (x86)\\Common Files CommonProgramW6432=C:\\Program Files\\Common Files COMPUTERNAME=DESKTOP-9A0PLM1 ComSpec=C:\\WINDOWS\\system32\\cmd.exe DriverData=C:\\Windows\\System32\\Drivers\\DriverData FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn FPS_BROWSER_APP_PROFILE_STRING=Internet Explorer FPS_BROWSER_USER_PROFILE_STRING=Default GCC=C:\\mingw64 GOPATH=E:\\Go GRADLE_HOME=C:\\Users\\lk\\.gradle\\wrapper\\dists\\gradle-4.6-all\\bcst21l2brirad8k2ben1letg\\gradle-4.6 HOMEDRIVE=C: HOMEPATH=\\Users\\lk IntelliJ IDEA=C:\\Program Files\\JetBrains\\IntelliJ IDEA 2018.3\\bin; JAVA_HOME=C:\\Program Files\\Java\\jdk1.8.0_192 JBOSS_HOME=G:\\ProgramData\\wildfly-15.0.0.Final\\wildfly-15.0.0.Final LOCALAPPDATA=C:\\Users\\lk\\AppData\\Local LOGONSERVER=\\\\DESKTOP-9A0PLM1 MYSQL=C:\\Program Files\\MySQL\\MySQL Server 5.7 NUMBER_OF_PROCESSORS=4 OneDrive=D:\\OneDrive OneDriveConsumer=D:\\OneDrive OS=Windows_NT Path=C:\\mingw64\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\Tools\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\140\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\DTS\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\140\\DTS\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\Client SDK\\ODBC\\130\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\Client SDK\\ODBC\\130\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\Tools\\Binn\\ManagementStudio\\;C:\\Program Files\\MySQL\\MySQL Server 5.7\\bin;E:\\Go\\bin;G:\\ProgramData\\Anaconda3\\;G:\\ProgramData\\Anaconda3\\Scripts\\;G:\\ProgramData\\apache-tomcat-7.0.90\\bin;C:\\Program Files\\Java\\jdk1.8.0_192\\bin;G:\\ProgramData\\sqlite-tools-win32-x86-3250200\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn\\;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Users\\lk\\.gradle\\wrapper\\dists\\gradle-4.6-all\\bcst21l2brirad8k2ben1letg\\gradle-4.6\\bin;G:\\PortableGit\\bin;G:\\ProgramData\\wildfly-15.0.0.Final\\wildfly-15.0.0.Final\\bin;G:\\Program Files\\nodejs\\;C:\\Users\\lk\\AppData\\Local\\Android\\Sdk\\platform-tools;F:\\Program Files\\PuTTY\\;H:\\软 件\\phantomjs-2.1.1-windows\\bin;G:\\Go\\bin;C:\\Users\\lk\\.windows-build-tools\\python27\\;G:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\npm-lifecycle\\node-gyp-bin;C:\\Users\\lk\\AppData\\Roaming\\npm\\node_modules\\windows-build-tools\\node_modules\\.bin;C:\\Users\\lk\\AppData\\Roaming\\npm\\node_modules\\.bin;C:\\mingw64\\bin;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\Tools\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\140\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\DTS\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\140\\DTS\\Binn\\;C:\\Program Files\\Microsoft SQL Server\\Client SDK\\ODBC\\130\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\Client SDK\\ODBC\\130\\Tools\\Binn\\;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\Tools\\Binn\\ManagementStudio\\;C:\\Program Files\\MySQL\\MySQL Server 5.7\\bin;G:\\ProgramData\\Anaconda3\\;G:\\ProgramData\\Anaconda3\\Scripts\\;G:\\ProgramData\\apache-tomcat-7.0.90\\bin;C:\\Program Files\\Java\\jdk1.8.0_192\\bin;G:\\ProgramData\\sqlite-tools-win32-x86-3250200\\;C:\\Program Files\\dotnet\\;C:\\Program Files\\Microsoft SQL Server\\130\\Tools\\Binn\\;C:\\Program Files\\NVIDIA Corporation\\NVIDIA NvDLISR;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\Users\\lk\\.gradle\\wrapper\\dists\\gradle-4.6-all\\bcst21l2brirad8k2ben1letg\\gradle-4.6\\bin;G:\\PortableGit\\bin;G:\\ProgramData\\wildfly-15.0.0.Final\\wildfly-15.0.0.Final\\bin;G:\\Program Files\\nodejs\\;C:\\Users\\lk\\AppData\\Local\\Android\\Sdk\\platform-tools;F:\\Program Files\\PuTTY\\;H:\\软件\\phantomjs-2.1.1-windows\\bin;C:\\Users\\lk\\AppData\\Local\\Microsoft\\WindowsApps;C:\\Program Files\\JetBrains\\IntelliJ IDEA 2018.3\\bin;C:\\Users\\lk\\AppData\\Roaming\\npm; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC PROCESSOR_ARCHITECTURE=AMD64 PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel PROCESSOR_LEVEL=6 PROCESSOR_REVISION=5e03 ProgramData=C:\\ProgramData ProgramFiles=C:\\Program Files ProgramFiles(x86)=C:\\Program Files (x86) ProgramW6432=C:\\Program Files PROMPT=$P$G PSModulePath=C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules;C:\\Program Files (x86)\\Microsoft SQL Server\\140\\Tools\\PowerShell\\Modules\\ PUBLIC=C:\\Users\\Public PUB_HOSTED_URL=https://pub.flutter-io.cn PYTHON3=G:\\ProgramData\\Anaconda3 SESSIONNAME=Console SQLITE3=G:\\ProgramData\\sqlite-tools-win32-x86-3250200 SystemDrive=C: SystemRoot=C:\\WINDOWS TEMP=C:\\Users\\lk\\AppData\\Local\\Temp TMP=C:\\Users\\lk\\AppData\\Local\\Temp USERDOMAIN=DESKTOP-9A0PLM1 USERDOMAIN_ROAMINGPROFILE=DESKTOP-9A0PLM1 USERNAME=lk USERPROFILE=C:\\Users\\lk windir=C:\\WINDOWS CGO_ENABLED=0" and the command E:\Go_modules\qt_binding>qtsetup -debug generate
time="2019-03-28T10:22:54+08:00" level=debug msg=Execute _func=RunCmd cmd="go env GOMOD" dir= env= name=GOMOD
time="2019-03-28T10:22:54+08:00" level=debug msg=Execute _func=RunCmd cmd="go list -mod=vendor -e -f {{.Dir}} github.com/therecipe/env_windows_amd64_512" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get env dir"
time="2019-03-28T10:22:54+08:00" level=debug msg=Execute _func=RunCmdOptionalError cmd="cmd /C mklink /J C:\\Users\\Public\\env_windows_amd64 E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512" dir= env= name="create symlink for env"
time="2019-03-28T10:22:55+08:00" level=debug msg=Execute _func=RunCmd cmd="go list -mod=vendor -e -f {{.Dir}} github.com/therecipe/env_windows_amd64_512/Tools" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get env dir"
time="2019-03-28T10:22:55+08:00" level=debug msg=Execute _func=RunCmdOptionalError cmd="cmd /C mklink /J C:\\Users\\Public\\env_windows_amd64_Tools E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\Tools" dir= env= name="create symlink for env"
time="2019-03-28T10:22:55+08:00" level=debug msg=Execute _func=RunCmd cmd="go list -mod=vendor -e -f {{.Root}} github.com/therecipe/qt" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get list gopath"
time="2019-03-28T10:23:05+08:00" level=warning msg="failed to create qtenv.bat symlink in your PATH (G:\\Go\\bin\\qtenv.bat); please use E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qtenv2.bat instead"
time="2019-03-28T10:23:05+08:00" level=info msg="running: 'qtsetup generate windows' [docker=false] [vagrant=false]"
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Network
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=XmlPatterns
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=PrintSupport
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Core
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Help
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=RemoteObjects
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=ScriptTools
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Xml
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=UiTools
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=DBus
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Qml
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Nfc
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=WebSockets
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Script
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Sensors
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=WinExtras
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Positioning
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=TestLib
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=SerialPort
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Widgets
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=SerialBus
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Purchasing
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Designer
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Scxml
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Gamepad
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Speech
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Charts
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=QuickControls2
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Svg
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Bluetooth
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=WebChannel
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Sailfish
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Multimedia
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Quick
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Gui
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=AndroidExtras
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=DataVisualization
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Sql
time="2019-03-28T10:23:05+08:00" level=debug msg=parser.LoadModule module=Location
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg="failed to load (optional) qtremoteobjects.index" error="open qtremoteobjects.index: The system cannot find the file specified."
time="2019-03-28T10:23:05+08:00" level=debug msg="failed to load (optional) qtprintsupport.index" error="open qtprintsupport.index: The system cannot find the file specified."
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg="failed to load (optional) qtxmlpatterns.index" error="open qtxmlpatterns.index: The system cannot find the file specified."
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:05+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:06+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:06+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:06+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:06+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal/binding/files/docs/5.12.0" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get doc dir"
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=RemoteObjects
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=PrintSupport
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=XmlPatterns
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtcore.index" error="open qtcore.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Core
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qthelp.index" error="open qthelp.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Help
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtscripttools.index" error="open qtscripttools.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=ScriptTools
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qttestlib.index" error="open qttestlib.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=TestLib
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtwebsockets.index" error="open qtwebsockets.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=WebSockets
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtuitools.index" error="open qtuitools.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=UiTools
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtnfc.index" error="open qtnfc.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Nfc
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtscript.index" error="open qtscript.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Script
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtwinextras.index" error="open qtwinextras.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=WinExtras
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtqml.index" error="open qtqml.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Qml
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtserialport.index" error="open qtserialport.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialPort
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtsensors.index" error="open qtsensors.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Sensors
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtpositioning.index" error="open qtpositioning.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Positioning
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtxml.index" error="open qtxml.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Xml
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtwidgets.index" error="open qtwidgets.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Widgets
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtdesigner.index" error="open qtdesigner.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=Designer
time="2019-03-28T10:23:06+08:00" level=debug msg="failed to load (optional) qtserialbus.index" error="open qtserialbus.index: The system cannot find the file specified."
time="2019-03-28T10:23:06+08:00" level=warning msg=parser.LoadModule error=EOF module=SerialBus
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtnetwork.index" error="open qtnetwork.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Network
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtcharts.index" error="open qtcharts.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=debug msg=parser.LoadModule error=EOF module=Charts
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtgamepad.index" error="open qtgamepad.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Gamepad
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtpurchasing.index" error="open qtpurchasing.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Purchasing
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtsvg.index" error="open qtsvg.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Svg
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtscxml.index" error="open qtscxml.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Scxml
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtbluetooth.index" error="open qtbluetooth.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Bluetooth
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtquickcontrols.index" error="open qtquickcontrols.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtspeech.index" error="open qtspeech.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Speech
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=QuickControls2
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtwebchannel.index" error="open qtwebchannel.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=WebChannel
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtdatavisualization.index" error="open qtdatavisualization.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=debug msg=parser.LoadModule error=EOF module=DataVisualization
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtgui.index" error="open qtgui.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Gui
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtsql.index" error="open qtsql.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Sql
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtdbus.index" error="open qtdbus.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=DBus
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtandroidextras.index" error="open qtandroidextras.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=AndroidExtras
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtquick.index" error="open qtquick.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Quick
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtmultimedia.index" error="open qtmultimedia.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Multimedia
time="2019-03-28T10:23:07+08:00" level=debug msg="failed to load (optional) qtlocation.index" error="open qtlocation.index: The system cannot find the file specified."
time="2019-03-28T10:23:07+08:00" level=warning msg=parser.LoadModule error=EOF module=Location
time="2019-03-28T10:23:07+08:00" level=debug msg=prepare module=Sailfish
time="2019-03-28T10:23:07+08:00" level=info msg="generating full qt/core "
time="2019-03-28T10:23:07+08:00" level=debug msg=generating module=Core
time="2019-03-28T10:23:07+08:00" level=debug msg=Execute _func=RunCmd cmd="go list -mod=vendor -e -f {{.Dir}} github.com/therecipe/qt" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name=utils.GoQtPkgPath
time="2019-03-28T10:23:07+08:00" level=debug msg="generating cpp" module=Core
time="2019-03-28T10:23:07+08:00" level=debug msg="generating h" module=Core
time="2019-03-28T10:23:07+08:00" level=debug msg="generating go" module=Core
time="2019-03-28T10:23:07+08:00" level=debug msg="running cgoTemplate" mode=0 module=Core path= pkg=Core target=windows
time="2019-03-28T10:23:07+08:00" level=debug msg="saved file len(26) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\core.pro"
time="2019-03-28T10:23:07+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\core.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\core" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:09+08:00" level=debug msg="saved file len(1349) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\core\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:09+08:00" level=info msg="generating full qt/androidextras "
time="2019-03-28T10:23:09+08:00" level=debug msg=generating module=AndroidExtras
time="2019-03-28T10:23:10+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="go list -mod=readonly -e -f {{.Dir}} github.com/therecipe/qt/internal" dir= env="=::=::\\ =E:=E:\\Go_modules\\qt_binding =ExitCode=00000000 ALLUSERSPROFILE=..." name="get files dir"
time="2019-03-28T10:23:10+08:00" level=error msg="failed to load \\binding\\files\\utils-androidextras_android.go" error="open \\binding\\files\\utils-androidextras_android.go: The system cannot find the path specified."
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(0) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\androidextras\\utils-androidextras_android.go"
time="2019-03-28T10:23:10+08:00" level=debug msg="generating cpp" module=AndroidExtras
time="2019-03-28T10:23:10+08:00" level=debug msg="generating h" module=AndroidExtras
time="2019-03-28T10:23:10+08:00" level=debug msg="generating go" module=AndroidExtras
time="2019-03-28T10:23:10+08:00" level=debug msg="generating go" module=AndroidExtras
time="2019-03-28T10:23:10+08:00" level=debug msg="running cgoTemplate" mode=0 module=AndroidExtras path= pkg=AndroidExtras target=windows
time="2019-03-28T10:23:10+08:00" level=info msg="generating full qt/gui "
time="2019-03-28T10:23:10+08:00" level=debug msg=generating module=Gui
time="2019-03-28T10:23:10+08:00" level=debug msg="generating cpp" module=Gui
time="2019-03-28T10:23:10+08:00" level=debug msg="generating h" module=Gui
time="2019-03-28T10:23:10+08:00" level=debug msg="generating go" module=Gui
time="2019-03-28T10:23:10+08:00" level=debug msg="running cgoTemplate" mode=0 module=Gui path= pkg=Gui target=windows
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(22) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gui.pro"
time="2019-03-28T10:23:10+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\gui.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gui" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(1251) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gui\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:10+08:00" level=info msg="generating full qt/network "
time="2019-03-28T10:23:10+08:00" level=debug msg=generating module=Network
time="2019-03-28T10:23:10+08:00" level=debug msg="generating cpp" module=Network
time="2019-03-28T10:23:10+08:00" level=debug msg="generating h" module=Network
time="2019-03-28T10:23:10+08:00" level=debug msg="generating go" module=Network
time="2019-03-28T10:23:10+08:00" level=debug msg="running cgoTemplate" mode=0 module=Network path= pkg=Network target=windows
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(18) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\network.pro"
time="2019-03-28T10:23:10+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\network.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\network" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(1255) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\network\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:10+08:00" level=info msg="generating full qt/xml "
time="2019-03-28T10:23:10+08:00" level=debug msg=generating module=Xml
time="2019-03-28T10:23:10+08:00" level=debug msg="generating cpp" module=Xml
time="2019-03-28T10:23:10+08:00" level=debug msg="generating h" module=Xml
time="2019-03-28T10:23:10+08:00" level=debug msg="generating go" module=Xml
time="2019-03-28T10:23:10+08:00" level=debug msg="running cgoTemplate" mode=0 module=Xml path= pkg=Xml target=windows
time="2019-03-28T10:23:10+08:00" level=debug msg="saved file len(26) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xml.pro"
time="2019-03-28T10:23:10+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\xml.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xml" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:11+08:00" level=debug msg="saved file len(1477) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xml\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:11+08:00" level=info msg="generating full qt/dbus "
time="2019-03-28T10:23:11+08:00" level=debug msg=generating module=DBus
time="2019-03-28T10:23:11+08:00" level=debug msg="generating cpp" module=DBus
time="2019-03-28T10:23:11+08:00" level=debug msg="generating h" module=DBus
time="2019-03-28T10:23:11+08:00" level=debug msg="generating go" module=DBus
time="2019-03-28T10:23:11+08:00" level=debug msg="running cgoTemplate" mode=0 module=DBus path= pkg=DBus target=windows
time="2019-03-28T10:23:11+08:00" level=debug msg="saved file len(15) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\dbus.pro"
time="2019-03-28T10:23:11+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\dbus.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\dbus" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:11+08:00" level=debug msg="saved file len(1240) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\dbus\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:11+08:00" level=info msg="generating full qt/nfc "
time="2019-03-28T10:23:11+08:00" level=debug msg=generating module=Nfc
time="2019-03-28T10:23:11+08:00" level=debug msg="generating cpp" module=Nfc
time="2019-03-28T10:23:11+08:00" level=debug msg="generating h" module=Nfc
time="2019-03-28T10:23:11+08:00" level=debug msg="generating go" module=Nfc
time="2019-03-28T10:23:11+08:00" level=debug msg="running cgoTemplate" mode=0 module=Nfc path= pkg=Nfc target=windows
time="2019-03-28T10:23:11+08:00" level=debug msg="saved file len(14) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\nfc.pro"
time="2019-03-28T10:23:11+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\nfc.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\nfc" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(1235) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\nfc\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:12+08:00" level=info msg="generating full qt/script "
time="2019-03-28T10:23:12+08:00" level=debug msg=generating module=Script
time="2019-03-28T10:23:12+08:00" level=debug msg="generating cpp" module=Script
time="2019-03-28T10:23:12+08:00" level=debug msg="generating h" module=Script
time="2019-03-28T10:23:12+08:00" level=debug msg="generating go" module=Script
time="2019-03-28T10:23:12+08:00" level=debug msg="running cgoTemplate" mode=0 module=Script path= pkg=Script target=windows
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(17) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\script.pro"
time="2019-03-28T10:23:12+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\script.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\script" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(1250) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\script\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:12+08:00" level=info msg="generating full qt/sensors "
time="2019-03-28T10:23:12+08:00" level=debug msg=generating module=Sensors
time="2019-03-28T10:23:12+08:00" level=debug msg="generating cpp" module=Sensors
time="2019-03-28T10:23:12+08:00" level=debug msg="generating h" module=Sensors
time="2019-03-28T10:23:12+08:00" level=debug msg="generating go" module=Sensors
time="2019-03-28T10:23:12+08:00" level=debug msg="running cgoTemplate" mode=0 module=Sensors path= pkg=Sensors target=windows
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(18) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sensors.pro"
time="2019-03-28T10:23:12+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\sensors.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sensors" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(1255) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sensors\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:12+08:00" level=info msg="generating full qt/positioning "
time="2019-03-28T10:23:12+08:00" level=debug msg=generating module=Positioning
time="2019-03-28T10:23:12+08:00" level=debug msg="generating cpp" module=Positioning
time="2019-03-28T10:23:12+08:00" level=debug msg="generating h" module=Positioning
time="2019-03-28T10:23:12+08:00" level=debug msg="generating go" module=Positioning
time="2019-03-28T10:23:12+08:00" level=debug msg="running cgoTemplate" mode=0 module=Positioning path= pkg=Positioning target=windows
time="2019-03-28T10:23:12+08:00" level=debug msg="saved file len(22) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\positioning.pro"
time="2019-03-28T10:23:12+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\positioning.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\positioning" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:13+08:00" level=debug msg="saved file len(1275) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\positioning\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:13+08:00" level=info msg="generating full qt/widgets "
time="2019-03-28T10:23:13+08:00" level=debug msg=generating module=Widgets
time="2019-03-28T10:23:13+08:00" level=debug msg="generating cpp" module=Widgets
time="2019-03-28T10:23:13+08:00" level=debug msg="generating h" module=Widgets
time="2019-03-28T10:23:13+08:00" level=debug msg="generating go" module=Widgets
time="2019-03-28T10:23:13+08:00" level=debug msg="running cgoTemplate" mode=0 module=Widgets path= pkg=Widgets target=windows
time="2019-03-28T10:23:13+08:00" level=debug msg="saved file len(22) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\widgets.pro"
time="2019-03-28T10:23:13+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\widgets.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\widgets" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:13+08:00" level=debug msg="saved file len(1255) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\widgets\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:13+08:00" level=info msg="generating full qt/sql "
time="2019-03-28T10:23:13+08:00" level=debug msg=generating module=Sql
time="2019-03-28T10:23:13+08:00" level=debug msg="generating cpp" module=Sql
time="2019-03-28T10:23:13+08:00" level=debug msg="generating h" module=Sql
time="2019-03-28T10:23:13+08:00" level=debug msg="generating go" module=Sql
time="2019-03-28T10:23:13+08:00" level=debug msg="running cgoTemplate" mode=0 module=Sql path= pkg=Sql target=windows
time="2019-03-28T10:23:13+08:00" level=debug msg="saved file len(26) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sql.pro"
time="2019-03-28T10:23:13+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\sql.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sql" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(1348) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\sql\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:14+08:00" level=info msg="generating full qt/qml "
time="2019-03-28T10:23:14+08:00" level=debug msg=generating module=Qml
time="2019-03-28T10:23:14+08:00" level=debug msg="generating cpp" module=Qml
time="2019-03-28T10:23:14+08:00" level=debug msg="generating h" module=Qml
time="2019-03-28T10:23:14+08:00" level=debug msg="generating go" module=Qml
time="2019-03-28T10:23:14+08:00" level=debug msg="running cgoTemplate" mode=0 module=Qml path= pkg=Qml target=windows
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(22) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\qml.pro"
time="2019-03-28T10:23:14+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\qml.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\qml" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(1348) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\qml\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:14+08:00" level=info msg="generating full qt/websockets "
time="2019-03-28T10:23:14+08:00" level=debug msg=generating module=WebSockets
time="2019-03-28T10:23:14+08:00" level=debug msg="generating cpp" module=WebSockets
time="2019-03-28T10:23:14+08:00" level=debug msg="generating h" module=WebSockets
time="2019-03-28T10:23:14+08:00" level=debug msg="generating go" module=WebSockets
time="2019-03-28T10:23:14+08:00" level=debug msg="running cgoTemplate" mode=0 module=WebSockets path= pkg=WebSockets target=windows
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(29) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\websockets.pro"
time="2019-03-28T10:23:14+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\websockets.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\websockets" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(1383) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\websockets\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:14+08:00" level=info msg="generating full qt/xmlpatterns "
time="2019-03-28T10:23:14+08:00" level=debug msg=generating module=XmlPatterns
time="2019-03-28T10:23:14+08:00" level=debug msg="generating cpp" module=XmlPatterns
time="2019-03-28T10:23:14+08:00" level=debug msg="generating h" module=XmlPatterns
time="2019-03-28T10:23:14+08:00" level=debug msg="generating go" module=XmlPatterns
time="2019-03-28T10:23:14+08:00" level=debug msg="running cgoTemplate" mode=0 module=XmlPatterns path= pkg=XmlPatterns target=windows
time="2019-03-28T10:23:14+08:00" level=debug msg="saved file len(30) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xmlpatterns.pro"
time="2019-03-28T10:23:14+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\xmlpatterns.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xmlpatterns" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:15+08:00" level=debug msg="saved file len(1388) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\xmlpatterns\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:15+08:00" level=info msg="generating full qt/bluetooth "
time="2019-03-28T10:23:15+08:00" level=debug msg=generating module=Bluetooth
time="2019-03-28T10:23:15+08:00" level=debug msg="generating cpp" module=Bluetooth
time="2019-03-28T10:23:15+08:00" level=debug msg="generating h" module=Bluetooth
time="2019-03-28T10:23:15+08:00" level=debug msg="generating go" module=Bluetooth
time="2019-03-28T10:23:15+08:00" level=debug msg="running cgoTemplate" mode=0 module=Bluetooth path= pkg=Bluetooth target=windows
time="2019-03-28T10:23:15+08:00" level=debug msg="saved file len(20) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\bluetooth.pro"
time="2019-03-28T10:23:15+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\bluetooth.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\bluetooth" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:15+08:00" level=debug msg="saved file len(1265) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\bluetooth\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:15+08:00" level=info msg="generating full qt/webchannel "
time="2019-03-28T10:23:15+08:00" level=debug msg=generating module=WebChannel
time="2019-03-28T10:23:15+08:00" level=debug msg="generating cpp" module=WebChannel
time="2019-03-28T10:23:15+08:00" level=debug msg="generating h" module=WebChannel
time="2019-03-28T10:23:15+08:00" level=debug msg="generating go" module=WebChannel
time="2019-03-28T10:23:15+08:00" level=debug msg="running cgoTemplate" mode=0 module=WebChannel path= pkg=WebChannel target=windows
time="2019-03-28T10:23:15+08:00" level=debug msg="saved file len(33) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\webchannel.pro"
time="2019-03-28T10:23:15+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\webchannel.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\webchannel" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(1480) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\webchannel\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:16+08:00" level=info msg="generating full qt/svg "
time="2019-03-28T10:23:16+08:00" level=debug msg=generating module=Svg
time="2019-03-28T10:23:16+08:00" level=debug msg="generating cpp" module=Svg
time="2019-03-28T10:23:16+08:00" level=debug msg="generating h" module=Svg
time="2019-03-28T10:23:16+08:00" level=debug msg="generating go" module=Svg
time="2019-03-28T10:23:16+08:00" level=debug msg="running cgoTemplate" mode=0 module=Svg path= pkg=Svg target=windows
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(26) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\svg.pro"
time="2019-03-28T10:23:16+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\svg.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\svg" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(1348) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\svg\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:16+08:00" level=info msg="generating full qt/multimedia "
time="2019-03-28T10:23:16+08:00" level=debug msg=generating module=Multimedia
time="2019-03-28T10:23:16+08:00" level=debug msg="generating cpp" module=Multimedia
time="2019-03-28T10:23:16+08:00" level=debug msg="generating h" module=Multimedia
time="2019-03-28T10:23:16+08:00" level=debug msg="generating go" module=Multimedia
time="2019-03-28T10:23:16+08:00" level=debug msg="running cgoTemplate" mode=0 module=Multimedia path= pkg=Multimedia target=windows
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(59) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\multimedia.pro"
time="2019-03-28T10:23:16+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\multimedia.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\multimedia" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(1649) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\multimedia\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:16+08:00" level=info msg="generating full qt/quick "
time="2019-03-28T10:23:16+08:00" level=debug msg=generating module=Quick
time="2019-03-28T10:23:16+08:00" level=debug msg="generating cpp" module=Quick
time="2019-03-28T10:23:16+08:00" level=debug msg="generating h" module=Quick
time="2019-03-28T10:23:16+08:00" level=debug msg="generating go" module=Quick
time="2019-03-28T10:23:16+08:00" level=debug msg="running cgoTemplate" mode=0 module=Quick path= pkg=Quick target=windows
time="2019-03-28T10:23:16+08:00" level=debug msg="saved file len(53) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quick.pro"
time="2019-03-28T10:23:16+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\quick.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quick" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:17+08:00" level=debug msg="saved file len(1701) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quick\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:17+08:00" level=info msg="generating full qt/help "
time="2019-03-28T10:23:17+08:00" level=debug msg=generating module=Help
time="2019-03-28T10:23:17+08:00" level=debug msg="generating cpp" module=Help
time="2019-03-28T10:23:17+08:00" level=debug msg="generating h" module=Help
time="2019-03-28T10:23:17+08:00" level=debug msg="generating go" module=Help
time="2019-03-28T10:23:17+08:00" level=debug msg="running cgoTemplate" mode=0 module=Help path= pkg=Help target=windows
time="2019-03-28T10:23:17+08:00" level=debug msg="saved file len(39) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\help.pro"
time="2019-03-28T10:23:17+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\help.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\help" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:17+08:00" level=debug msg="saved file len(1563) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\help\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:17+08:00" level=info msg="generating full qt/location "
time="2019-03-28T10:23:17+08:00" level=debug msg=generating module=Location
time="2019-03-28T10:23:17+08:00" level=debug msg="generating cpp" module=Location
time="2019-03-28T10:23:17+08:00" level=debug msg="generating h" module=Location
time="2019-03-28T10:23:17+08:00" level=debug msg="generating go" module=Location
time="2019-03-28T10:23:17+08:00" level=debug msg="running cgoTemplate" mode=0 module=Location path= pkg=Location target=windows
time="2019-03-28T10:23:17+08:00" level=debug msg="saved file len(41) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\location.pro"
time="2019-03-28T10:23:17+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\location.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\location" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:18+08:00" level=debug msg="saved file len(1853) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\location\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:18+08:00" level=info msg="generating full qt/scripttools "
time="2019-03-28T10:23:18+08:00" level=debug msg=generating module=ScriptTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating cpp" module=ScriptTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating h" module=ScriptTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating go" module=ScriptTools
time="2019-03-28T10:23:18+08:00" level=debug msg="running cgoTemplate" mode=0 module=ScriptTools path= pkg=ScriptTools target=windows
time="2019-03-28T10:23:18+08:00" level=debug msg="saved file len(37) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scripttools.pro"
time="2019-03-28T10:23:18+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\scripttools.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scripttools" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:18+08:00" level=debug msg="saved file len(1497) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scripttools\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:18+08:00" level=info msg="generating full qt/uitools "
time="2019-03-28T10:23:18+08:00" level=debug msg=generating module=UiTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating cpp" module=UiTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating h" module=UiTools
time="2019-03-28T10:23:18+08:00" level=debug msg="generating go" module=UiTools
time="2019-03-28T10:23:18+08:00" level=debug msg="running cgoTemplate" mode=0 module=UiTools path= pkg=UiTools target=windows
time="2019-03-28T10:23:18+08:00" level=debug msg="saved file len(30) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\uitools.pro"
time="2019-03-28T10:23:18+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\uitools.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\uitools" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(1368) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\uitools\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:19+08:00" level=info msg="generating full qt/winextras "
time="2019-03-28T10:23:19+08:00" level=debug msg=generating module=WinExtras
time="2019-03-28T10:23:19+08:00" level=debug msg="generating cpp" module=WinExtras
time="2019-03-28T10:23:19+08:00" level=debug msg="generating h" module=WinExtras
time="2019-03-28T10:23:19+08:00" level=debug msg="generating go" module=WinExtras
time="2019-03-28T10:23:19+08:00" level=debug msg="running cgoTemplate" mode=0 module=WinExtras path= pkg=WinExtras target=windows
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(32) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\winextras.pro"
time="2019-03-28T10:23:19+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\winextras.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\winextras" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(1378) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\winextras\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:19+08:00" level=info msg="generating full qt/testlib "
time="2019-03-28T10:23:19+08:00" level=debug msg=generating module=TestLib
time="2019-03-28T10:23:19+08:00" level=debug msg="generating cpp" module=TestLib
time="2019-03-28T10:23:19+08:00" level=debug msg="generating h" module=TestLib
time="2019-03-28T10:23:19+08:00" level=debug msg="generating go" module=TestLib
time="2019-03-28T10:23:19+08:00" level=debug msg="running cgoTemplate" mode=0 module=TestLib path= pkg=TestLib target=windows
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(30) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\testlib.pro"
time="2019-03-28T10:23:19+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\testlib.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\testlib" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(1362) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\testlib\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:19+08:00" level=info msg="generating full qt/serialport "
time="2019-03-28T10:23:19+08:00" level=debug msg=generating module=SerialPort
time="2019-03-28T10:23:19+08:00" level=debug msg="generating cpp" module=SerialPort
time="2019-03-28T10:23:19+08:00" level=debug msg="generating h" module=SerialPort
time="2019-03-28T10:23:19+08:00" level=debug msg="generating go" module=SerialPort
time="2019-03-28T10:23:19+08:00" level=debug msg="running cgoTemplate" mode=0 module=SerialPort path= pkg=SerialPort target=windows
time="2019-03-28T10:23:19+08:00" level=debug msg="saved file len(21) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialport.pro"
time="2019-03-28T10:23:19+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\serialport.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialport" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:20+08:00" level=debug msg="saved file len(1270) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialport\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:20+08:00" level=info msg="generating full qt/serialbus "
time="2019-03-28T10:23:20+08:00" level=debug msg=generating module=SerialBus
time="2019-03-28T10:23:20+08:00" level=debug msg="generating cpp" module=SerialBus
time="2019-03-28T10:23:20+08:00" level=debug msg="generating h" module=SerialBus
time="2019-03-28T10:23:20+08:00" level=debug msg="generating go" module=SerialBus
time="2019-03-28T10:23:20+08:00" level=debug msg="running cgoTemplate" mode=0 module=SerialBus path= pkg=SerialBus target=windows
time="2019-03-28T10:23:20+08:00" level=debug msg="saved file len(20) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialbus.pro"
time="2019-03-28T10:23:20+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\serialbus.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialbus" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:20+08:00" level=debug msg="saved file len(1265) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\serialbus\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:20+08:00" level=info msg="generating full qt/printsupport "
time="2019-03-28T10:23:20+08:00" level=debug msg=generating module=PrintSupport
time="2019-03-28T10:23:20+08:00" level=debug msg="generating cpp" module=PrintSupport
time="2019-03-28T10:23:20+08:00" level=debug msg="generating h" module=PrintSupport
time="2019-03-28T10:23:20+08:00" level=debug msg="generating go" module=PrintSupport
time="2019-03-28T10:23:20+08:00" level=debug msg="running cgoTemplate" mode=0 module=PrintSupport path= pkg=PrintSupport target=windows
time="2019-03-28T10:23:20+08:00" level=debug msg="saved file len(35) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\printsupport.pro"
time="2019-03-28T10:23:20+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\printsupport.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\printsupport" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:21+08:00" level=debug msg="saved file len(1393) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\printsupport\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:21+08:00" level=info msg="generating full qt/designer "
time="2019-03-28T10:23:21+08:00" level=debug msg=generating module=Designer
time="2019-03-28T10:23:21+08:00" level=debug msg="generating cpp" module=Designer
time="2019-03-28T10:23:21+08:00" level=debug msg="generating h" module=Designer
time="2019-03-28T10:23:21+08:00" level=debug msg="generating go" module=Designer
time="2019-03-28T10:23:21+08:00" level=debug msg="running cgoTemplate" mode=0 module=Designer path= pkg=Designer target=windows
time="2019-03-28T10:23:21+08:00" level=debug msg="saved file len(44) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\designer.pro"
time="2019-03-28T10:23:21+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\designer.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\designer" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:21+08:00" level=debug msg="saved file len(1573) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\designer\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:21+08:00" level=info msg="generating full qt/scxml "
time="2019-03-28T10:23:21+08:00" level=debug msg=generating module=Scxml
time="2019-03-28T10:23:21+08:00" level=debug msg="generating cpp" module=Scxml
time="2019-03-28T10:23:21+08:00" level=debug msg="generating h" module=Scxml
time="2019-03-28T10:23:21+08:00" level=debug msg="generating go" module=Scxml
time="2019-03-28T10:23:21+08:00" level=debug msg="running cgoTemplate" mode=0 module=Scxml path= pkg=Scxml target=windows
time="2019-03-28T10:23:21+08:00" level=debug msg="saved file len(28) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scxml.pro"
time="2019-03-28T10:23:21+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\scxml.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scxml" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(1455) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\scxml\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:22+08:00" level=info msg="generating full qt/gamepad "
time="2019-03-28T10:23:22+08:00" level=debug msg=generating module=Gamepad
time="2019-03-28T10:23:22+08:00" level=debug msg="generating cpp" module=Gamepad
time="2019-03-28T10:23:22+08:00" level=debug msg="generating h" module=Gamepad
time="2019-03-28T10:23:22+08:00" level=debug msg="generating go" module=Gamepad
time="2019-03-28T10:23:22+08:00" level=debug msg="running cgoTemplate" mode=0 module=Gamepad path= pkg=Gamepad target=windows
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(22) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gamepad.pro"
time="2019-03-28T10:23:22+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\gamepad.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gamepad" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(1255) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\gamepad\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:22+08:00" level=info msg="generating full qt/purchasing "
time="2019-03-28T10:23:22+08:00" level=debug msg=generating module=Purchasing
time="2019-03-28T10:23:22+08:00" level=debug msg="generating cpp" module=Purchasing
time="2019-03-28T10:23:22+08:00" level=debug msg="generating h" module=Purchasing
time="2019-03-28T10:23:22+08:00" level=debug msg="generating go" module=Purchasing
time="2019-03-28T10:23:22+08:00" level=debug msg="running cgoTemplate" mode=0 module=Purchasing path= pkg=Purchasing target=windows
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(21) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\purchasing.pro"
time="2019-03-28T10:23:22+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\purchasing.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\purchasing" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(1270) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\purchasing\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:22+08:00" level=info msg="generating full qt/datavisualization [GPLv3]"
time="2019-03-28T10:23:22+08:00" level=debug msg=generating module=DataVisualization
time="2019-03-28T10:23:22+08:00" level=debug msg="generating cpp" module=DataVisualization
time="2019-03-28T10:23:22+08:00" level=debug msg="generating h" module=DataVisualization
time="2019-03-28T10:23:22+08:00" level=debug msg="generating go" module=DataVisualization
time="2019-03-28T10:23:22+08:00" level=debug msg="running cgoTemplate" mode=0 module=DataVisualization path= pkg=DataVisualization target=windows
time="2019-03-28T10:23:22+08:00" level=debug msg="saved file len(32) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\datavisualization.pro"
time="2019-03-28T10:23:22+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\datavisualization.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\datavisualization" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:23+08:00" level=debug msg="saved file len(1305) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\datavisualization\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:23+08:00" level=info msg="generating full qt/charts [GPLv3]"
time="2019-03-28T10:23:23+08:00" level=debug msg=generating module=Charts
time="2019-03-28T10:23:23+08:00" level=debug msg="generating cpp" module=Charts
time="2019-03-28T10:23:23+08:00" level=debug msg="generating h" module=Charts
time="2019-03-28T10:23:23+08:00" level=debug msg="generating go" module=Charts
time="2019-03-28T10:23:23+08:00" level=debug msg="running cgoTemplate" mode=0 module=Charts path= pkg=Charts target=windows
time="2019-03-28T10:23:23+08:00" level=debug msg="saved file len(29) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\charts.pro"
time="2019-03-28T10:23:23+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\charts.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\charts" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:23+08:00" level=debug msg="saved file len(1363) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\charts\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:23+08:00" level=info msg="generating full qt/speech "
time="2019-03-28T10:23:23+08:00" level=debug msg=generating module=Speech
time="2019-03-28T10:23:23+08:00" level=debug msg="generating cpp" module=Speech
time="2019-03-28T10:23:23+08:00" level=debug msg="generating h" module=Speech
time="2019-03-28T10:23:23+08:00" level=debug msg="generating go" module=Speech
time="2019-03-28T10:23:23+08:00" level=debug msg="running cgoTemplate" mode=0 module=Speech path= pkg=Speech target=windows
time="2019-03-28T10:23:23+08:00" level=debug msg="saved file len(23) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\speech.pro"
time="2019-03-28T10:23:23+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\speech.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\speech" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:24+08:00" level=debug msg="saved file len(1274) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\speech\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:24+08:00" level=info msg="generating full qt/quickcontrols2 "
time="2019-03-28T10:23:24+08:00" level=debug msg=generating module=QuickControls2
time="2019-03-28T10:23:24+08:00" level=debug msg="generating cpp" module=QuickControls2
time="2019-03-28T10:23:24+08:00" level=debug msg="generating h" module=QuickControls2
time="2019-03-28T10:23:24+08:00" level=debug msg="generating go" module=QuickControls2
time="2019-03-28T10:23:24+08:00" level=debug msg="running cgoTemplate" mode=0 module=QuickControls2 path= pkg=QuickControls2 target=windows
time="2019-03-28T10:23:24+08:00" level=debug msg="saved file len(68) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quickcontrols2.pro"
time="2019-03-28T10:23:24+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\quickcontrols2.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quickcontrols2" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:24+08:00" level=debug msg="saved file len(1851) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\quickcontrols2\\cgo_windows_windows_amd64.go"
time="2019-03-28T10:23:24+08:00" level=info msg="generating full qt/sailfish "
time="2019-03-28T10:23:24+08:00" level=debug msg=generating module=Sailfish
time="2019-03-28T10:23:24+08:00" level=debug msg="generating cpp" module=Sailfish
time="2019-03-28T10:23:24+08:00" level=debug msg="QtSailfish add dependency: QtSailfish"
time="2019-03-28T10:23:24+08:00" level=debug msg="generating h" module=Sailfish
time="2019-03-28T10:23:24+08:00" level=debug msg="generating go" module=Sailfish
time="2019-03-28T10:23:24+08:00" level=debug msg="generating go" module=Sailfish
time="2019-03-28T10:23:24+08:00" level=debug msg="running cgoTemplate" mode=0 module=Sailfish path= pkg=Sailfish target=windows
time="2019-03-28T10:23:24+08:00" level=info msg="generating full qt/remoteobjects "
time="2019-03-28T10:23:24+08:00" level=debug msg=generating module=RemoteObjects
time="2019-03-28T10:23:24+08:00" level=debug msg="generating cpp" module=RemoteObjects
time="2019-03-28T10:23:24+08:00" level=debug msg="generating h" module=RemoteObjects
time="2019-03-28T10:23:24+08:00" level=debug msg="generating go" module=RemoteObjects
time="2019-03-28T10:23:24+08:00" level=debug msg="running cgoTemplate" mode=0 module=RemoteObjects path= pkg=RemoteObjects target=windows
time="2019-03-28T10:23:24+08:00" level=debug msg="saved file len(32) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\remoteobjects.pro"
time="2019-03-28T10:23:24+08:00" level=debug msg=Execute _func=RunCmdOptional cmd="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\env_windows_amd64_512\\5.12.0\\mingw73_64\\bin\\qmake -o Mfile ..\\remoteobjects.pro -spec win32-g++ CONFIG+=console CONFIG+=release" dir="E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\remoteobjects" env= name="run qmake for windows on windows"
time="2019-03-28T10:23:24+08:00" level=debug msg="saved file len(1398) E:\\Go_modules\\qt_binding\\vendor\\github.com\\therecipe\\qt\\remoteobjects\\cgo_windows_windows_amd64.go"
E:\Go_modules\qt_binding> |
Thanks, yeah it seems like the doc dir can't be found somehow. Please run the following and see if you get a different output this time:
|
Nice, It works ! Thank you for your help very much. @therecipe if anybody has the same problem as me (the golang.org is blocked.), there are the steps to solve this problem:
|
No problem, you are welcome :) |
hi,guys,I met some trouble with therecipe/qt
Due to
The Great Firewall of China
,I can't fetch thegolang.org/x/*
,so I can't usego get -u -v github.com/therecipe/qt/cmd/...
to install therecipe/qt ( install on winows )So , I try:
GOPATH/src/github.com/therecipe
andgit clone https://github.com/therecipe/qt.git
git clone https://github.com/therecipe/env_windows_amd64_512.git
git clone github.com/golang/[packet]
the packet iscrypto
,tools
.etc and makedirGOPATH/src/golang.org/x/[packet]
cd GOPATH/src/github.com/therecipe/qt/cmd
andgo install
qtdeploy
,qtmoc
,qtsetup
.etcqtsetup
=> success.when i use therecipe/examples/tree/master/basic/quick this example to create a project on
GOPATH
,then deploy it.It success!
But ! When I use the same code , create a
go mod
project, It faild:this is my go.mod file: (maby no use
net
andtext
, but this go.mod file is a template file for me. I won't bother to delete it)I've already seen #755 (comment)
this is the vendor files, I found it lost so many files than therecipe/qt.
So, The reason of I can't build the project is that? Or other reason? This is
go mod
bug ?Anybody can teach me how to build the '
go mod
project' use therecipe/qt with can't fetchgolang.org/x/*
?therecipe/qt is awsome , I didn't want to miss it.
Thanks~
my env with QT 5.12.0:
The text was updated successfully, but these errors were encountered: