summaryrefslogtreecommitdiffstats
path: root/meta/classes/go.bbclass
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-01-01 12:29:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-05 17:18:15 +0000
commit0111724c3405c422730aaf1353269e3665aea6e2 (patch)
tree1fc6ca673872eceb5e97140d0c47adec538f1f3c /meta/classes/go.bbclass
parent51a8e28fe03c167727be99183fa82ab88ffe9876 (diff)
downloadpoky-0111724c3405c422730aaf1353269e3665aea6e2.tar.gz
go: correctly set debug-prefix-map and build directory
Go has its own system for creating temporary build sub-directories with randomized names, and setting up debug-prefix-map on the fly to prevent those directories leaking into target binaries. OE's own settings were clashing with it, so this change carefully avoids the two stepping on each other. Additionally, the top level build directory cannot be named 'go-something'. (From OE-Core rev: 9985b17a30bb9b9f1bc82a44662687db5cead66e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/go.bbclass')
-rw-r--r--meta/classes/go.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass
index 5c1fdd7d5f..9c4c92bffd 100644
--- a/meta/classes/go.bbclass
+++ b/meta/classes/go.bbclass
@@ -67,7 +67,7 @@ GO_INSTALL_FILTEROUT ?= "${GO_IMPORT}/vendor/"
67 67
68B = "${WORKDIR}/build" 68B = "${WORKDIR}/build"
69export GOPATH = "${B}" 69export GOPATH = "${B}"
70export GOTMPDIR ?= "${WORKDIR}/go-tmp" 70export GOTMPDIR ?= "${WORKDIR}/build-tmp"
71GOTMPDIR[vardepvalue] = "" 71GOTMPDIR[vardepvalue] = ""
72 72
73python go_do_unpack() { 73python go_do_unpack() {