Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: permission problems with distro-provided go and -installsuffix #10011

Closed
krnowak opened this issue Feb 26, 2015 · 2 comments
Closed

build: permission problems with distro-provided go and -installsuffix #10011

krnowak opened this issue Feb 26, 2015 · 2 comments

Comments

@krnowak
Copy link

krnowak commented Feb 26, 2015

With go 1.4 a developer has to use also an -installsuffix option if they want to have a static build (as told in #9344). Passing -installsuffix results in a directory creation in GOROOT/pkg with that suffix, so static std library can be stored there (I believe). The problem is that using this option is not possible with go provided by a distro (unless developer is a root, which is unlikely), because GOROOT is usually something like /usr/lib/golang.

Calling go get -a -tags netgo -ldflags -w -installsuffix nocgo <project> produces following error:
go install runtime: mkdir /usr/lib/golang/pkg/linux_amd64_nocgo/: permission denied

Not sure if that is fixable, but maybe specifying a GOPKG env var would be a viable option/workaround? GOPKG env var would be for GOROOT/pkg like GOBIN is now for GOROOT/bin. Then the invocation would look like this:
GOPKG="$HOME/some/dir" go get -a -tags netgo -ldflags -w -installsuffix nocgo <project>

What do you think?

@adg adg changed the title Permission problems with distro-provided go and -installsuffix build: permission problems with distro-provided go and -installsuffix Feb 26, 2015
@minux
Copy link
Member

minux commented Feb 26, 2015

You can't use "go install" (or "go get" without -d).

The -installsuffix trick only works with "go build".

@minux minux closed this as completed Feb 26, 2015
@adg
Copy link
Contributor

adg commented Feb 26, 2015

The situation is pretty easy to resolve; the user can just install a user-owned version of Go and work from that. I'm hesitant to add more configuration and make the build process more complex.

@golang golang locked and limited conversation to collaborators Jun 25, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants