Kevin Johnson
Kevin Johnson

Reputation: 11

golang 1.6 cross compile

In golang 1.6, when I cross compile from my 64-bit arch to 32-bit for Linux, the go install command puts the executable in bin/linux_386/<exe>.

Is there a way to put it into bin/ instead? If I build in the 32-bit environment, then it will go in bin/. I want the exe to go into the same location regardless of if I cross compile to 32-bit outside the sandbox, or natively compile inside the 32-bit sandbox.

My workaround right now is to soft link the linux_386 dir to ., as in ln -s . linux_386.

Upvotes: 0

Views: 919

Answers (1)

OneOfOne
OneOfOne

Reputation: 99195

You can't with go install, however you can do it manually:

 go build -o $GOPATH/bin/<exe> $GOPATH/src/your/<pkg>

Upvotes: 1

Related Questions