go-sqlite3

Golang 在WIN10环境下编译报 %PATH% 下无法找到gcc

随声附和 提交于 2021-02-02 11:50:05
网上大部分解决方案都是去下个mingw-w64的环境,但是国内下载实在是太缓慢了 在github上找到一个解决gcc的方法,下个 tdmgcc ,效果一样的,最主要的就是快 我遇到这个问题是在安装 go-sqlite3 时出现的 来源: oschina 链接: https://my.oschina.net/jayR/blog/4941354

Mingw静态编译go-sqlite3包

最后都变了- 提交于 2020-03-17 02:11:48
某厂面试归来,发现自己落伍了!>>> 在github.com/mattn/go-sqlite3上,作者说在windows下使用go-sqlite3要使用动态链接的方法[ Go does not support static linking for external C library; sqlite3 should be built as a shared library. If it runs on Windows, it needs dll.],结合网上的资源,我整理出了如何使用静态编译的方法使用go-sqlite3。 折腾的过程中发现使用go get命令的时候会把源码下载到go的安装目录\ src\pkg\下,然后使用go install 的时候会编译包再安装的pkg目录下。src\pkg\github.com\mattn\go-sqlite3 这是go-sqlite3下载到本地后的目录结构。网上的资源是在Google groups找到的 how to build "go-sqlite3" under windows with x64 ,内容如下: Hi all. i got the solution. i hope it can help someone like me . 1. install tdm64-gcc 2. download the source code