diff options
author | 2020-07-09 12:57:29 -0700 | |
---|---|---|
committer | 2020-07-22 22:46:37 +0100 | |
commit | 1a6d9b141160c5d59d689545a7b034d30118b9cc (patch) | |
tree | 69905a062ca39ba61469e1eb0272c260b57ddbb0 | |
parent | 15de675ce832eaca20dc05ad5f7be128a9ee9708 (diff) | |
download | poky-1a6d9b141160c5d59d689545a7b034d30118b9cc.tar.gz poky-1a6d9b141160c5d59d689545a7b034d30118b9cc.tar.bz2 poky-1a6d9b141160c5d59d689545a7b034d30118b9cc.zip |
go: Disbale CGO for riscv64
cgo is still not available in go for riscv64, we will re-evaluate it
once we upgrade to 1.15
Fixes
| /usr/src/debug/go-runtime/1.14.4-r0/go/src/runtime/cgo/gcc_util.c:23: undefined reference to `_cgo_sys_thread_start'
[YOCTO #13966]
(From OE-Core rev: 987d29d0b0dfa19ef6564996198f22c2b08f6ff9)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f512b3308ed6ee878c77f72b9235ada83d107dba)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/go/go-runtime_1.14.bb | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/go/go_1.14.bb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/go/go-runtime_1.14.bb b/meta/recipes-devtools/go/go-runtime_1.14.bb index 43b68b4e46..4eeee65e0c 100644 --- a/meta/recipes-devtools/go/go-runtime_1.14.bb +++ b/meta/recipes-devtools/go/go-runtime_1.14.bb @@ -1,2 +1,3 @@ +export CGO_ENABLED_riscv64 = "" require go-${PV}.inc require go-runtime.inc diff --git a/meta/recipes-devtools/go/go_1.14.bb b/meta/recipes-devtools/go/go_1.14.bb index 5d40cf9d04..bc90a1329e 100644 --- a/meta/recipes-devtools/go/go_1.14.bb +++ b/meta/recipes-devtools/go/go_1.14.bb @@ -2,7 +2,7 @@ require go-${PV}.inc require go-target.inc export GOBUILDMODE="" - +export CGO_ENABLED_riscv64 = "" # Add pie to GOBUILDMODE to satisfy "textrel" QA checking, but mips/riscv # doesn't support -buildmode=pie, so skip the QA checking for mips/riscv and its # variants. |