mac 下编译包含 sqlite 的 go 应用
mac 下编译包含 sqlite 的 go 应用
brew install filosottile/musl-cross/musl-cross
linux 服务器安装
bash
wget https://musl.libc.org/releases/musl-1.2.4.tar.gz
tar -xzvf musl-1.2.4.tar.gz
cd musl; ./configure && make install
mac 下打包 go 应用
bash
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 CC=x86_64-linux-musl-gcc go build -o ./bin/ ./...