mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
build(netgo): make sure the project is always compiled with netgo
build tag (#3428)
* build(netgo): make sure the project is always compiled with `netgo` build tag * docs(netgo): better comments
This commit is contained in:
parent
15b2dc6b48
commit
69e2a6d620
6 changed files with 30 additions and 3 deletions
8
main.go
8
main.go
|
@ -4,8 +4,16 @@ import (
|
|||
_ "net/http/pprof" //nolint:gosec
|
||||
|
||||
"github.com/navidrome/navidrome/cmd"
|
||||
"github.com/navidrome/navidrome/conf/buildtags"
|
||||
)
|
||||
|
||||
//goland:noinspection GoBoolExpressions
|
||||
func main() {
|
||||
// This import is used to force the inclusion of the `netgo` tag when compiling the project.
|
||||
// If you get compilation errors like "undefined: buildtags.NETGO", this means you forgot to specify
|
||||
// the `netgo` build tag when compiling the project.
|
||||
// To avoid these kind of errors, you should use `make build` to compile the project.
|
||||
_ = buildtags.NETGO
|
||||
|
||||
cmd.Execute()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue