go
多动手,勤思考
阿布
展开
-
解决cannot find module providing package或cannot find main module
问题描述:运行非go mod项目,一直远程下载依赖。可所有依赖都下载到本地了,不需要下载可以直接运行。解决关闭go mod,命令如下:go env -w GO111MODULE=off原创 2020-12-18 11:45:50 · 1580 阅读 · 0 评论 -
therecipe/qt windows setParent SHELLDLL_DefView 不起作用,无法做到窗口在最上层
这里可能是和获取窗口句柄有关,按下方的写法,可以解决原创 2020-06-04 17:03:50 · 590 阅读 · 0 评论 -
Windows下支持MSVC版本的GoLang编译(赴编译好的下载链接) 用于 therecipe / qt
获取源代码到本地 git clone https://github.com/golang/go.git1.5版本以后的GoLang编译需要本地已经安装过1.4版本以上的go,所以如果本机没有的话,请去下载一个 https://studygolang.com/dl/golang/go1.14.3.windows-amd64.msi切换到支持MSVC的版本, git fetch "https://go.googlesource.com/go" refs/changes/46/133946/5 &..原创 2020-05-31 10:42:55 · 1689 阅读 · 2 评论 -
Windows下Go源码编译
获取源代码到本地 git clone https://github.com/golang/go.git (也可以不通过git检出的方式)1.5版本以后的GoLang编译需要本地已经安装过1.4版本以上的go,所以如果本机没有的话,请去下载一个 https://studygolang.com/dl/golang/go1.14.3.windows-amd64.msi通过cmd,cd到你第一步检出的源码文件夹下的src文件夹下面首先执行下面三条命令 1. set CGO_ENABLED..原创 2020-05-31 09:55:02 · 2768 阅读 · 0 评论