From 21ff0d508796006fcbfcc75585c29224cfc4bfdc Mon Sep 17 00:00:00 2001 From: Matt Keeler Date: Wed, 25 Jul 2018 15:21:11 -0400 Subject: [PATCH] Fix cross compiling with make make XC_OS=linux XC_ARCH=amd64 when running on macos puts its binaries in ${GOPATH}/bin/linux_amd64/consul and not ${GOPATH}/bin/consul This makes the build pull the binary from the right location. --- build-support/functions/20-build.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build-support/functions/20-build.sh b/build-support/functions/20-build.sh index f2f8d9da58..54cef54d72 100644 --- a/build-support/functions/20-build.sh +++ b/build-support/functions/20-build.sh @@ -233,7 +233,7 @@ function build_consul_post { rm -r pkg.bin.new DEV_PLATFORM="./pkg/bin/${extra_dir}$(go env GOOS)_$(go env GOARCH)" - for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f ) + for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f 2>/dev/null) do # recreate the bin dir rm -r bin/* 2> /dev/null @@ -436,8 +436,14 @@ function build_consul_local { echo "---> ${osarch}" + mkdir -p "${outdir}" - CGO_ENABLED=0 GOOS=${os} GOARCH=${arch} go install -ldflags "${GOLDFLAGS}" -tags "${GOTAGS}" && cp "${MAIN_GOPATH}/bin/consul" "${outdir}/consul" + GOBIN_EXTRA="" + if test "${os}" != "$(go env GOOS)" -o "${arch}" != "$(go env GOARCH)" + then + GOBIN_EXTRA="${os}_${arch}/" + fi + CGO_ENABLED=0 GOOS=${os} GOARCH=${arch} go install -ldflags "${GOLDFLAGS}" -tags "${GOTAGS}" && cp "${MAIN_GOPATH}/bin/${GOBIN_EXTRA}consul" "${outdir}/consul" if test $? -ne 0 then err "ERROR: Failed to build Consul for ${osarch}"