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.