1
0

tris: fix cross-compilation and relocation

Este cometimento está contido em:
Filippo Valsorda 2016-12-01 15:06:07 +00:00 cometido por Peter Wu
ascendente 345fbe2a39
cometimento 831410a948
2 ficheiros modificados com 3 adições e 3 eliminações

Ver ficheiro

@ -1,5 +1,5 @@
GO ?= go
GOENV := $(shell $(GO) env GOOS)_$(shell $(GO) env GOARCH)
GOENV := $(shell $(GO) env GOHOSTOS)_$(shell $(GO) env GOHOSTARCH)
GOROOTINFO := $(shell $(GO) version | cut -d' ' -f 3)_$(GOENV)
.PHONY: GOROOT

Ver ficheiro

@ -4,9 +4,9 @@ set -e
BASEDIR=$(cd "$(dirname "$0")" && pwd)
make --quiet -C "$BASEDIR" go >&2
GOENV="$(go env GOOS)_$(go env GOARCH)"
GOENV="$(go env GOHOSTOS)_$(go env GOHOSTARCH)"
unset GOROOT
export GOROOT="$BASEDIR/go/$GOENV"
make --quiet -C "$BASEDIR" GOROOT GO="$BASEDIR/go/$GOENV/bin/go" >&2
export GOROOT="$BASEDIR/GOROOT/$GOENV"