feat(nvim): enable debug builds in buildgo snippet

This commit is contained in:
George Rawlinson 2023-02-07 20:53:47 +13:00
parent 2bcf093e8c
commit e50ec4828b
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 4 additions and 2 deletions

View File

@ -113,13 +113,15 @@ snippet buildgo "Build (Go)" i
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export GOPATH="${srcdir}"
go build -v \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags "-linkmode external -extldflags ${LDFLAGS}" \
-ldflags "-compressdwarf=false \
-linkmode external \
-extldflags ${LDFLAGS}" \
-o build \
.
endsnippet