`go build` rebuilds unnecessarily

后端 未结 2 2030
感动是毒
感动是毒 2020-12-10 21:22

go build and go run are very slow on a tiny program I have (cgo invocations in particular). I\'d like go to cache the binary so that it only rebuilds when the source is new

2条回答
  •  遥遥无期
    2020-12-10 22:01

    go build and go install will soon (Go 1.10, Q1 2018) be much faster: see this thread and this draft document.

    The go command now maintains a cache of built packages and other small metadata (CL 68116 and CL 75473). The cache defaults to the operating system-defined user cache directory but can be moved by setting $GOCACHE.
    Run "go env GOCACHE" to see the current effective setting. Right now the go command never deletes anything from the cache. If the cache gets too big, run "go clean -cache" instead of deleting the directory. That command will preserve the cache's log.txt file. In a few weeks I'll ask people to post their log.txt files to a Github issue so that we can evaluate cache size management approaches.

    The main effect of the build cache is that commands like "go test" and "go build" run fast and do incremental builds always, reusing past build steps as aggressively as possible.
    You do not have to use "go test -i" or "go build -i" or "go install" just to get fast incremental builds. We will not have to teach new users those workarounds anymore. Everything will just be fast.

    Note that go install won't installs dependencies of the named packages: see "What does go build build?".

提交回复
热议问题