diff options
author | Jose Quaresma <quaresma.jose@gmail.com> | 2024-05-06 11:20:19 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-05-23 08:55:01 -0700 |
commit | b79fbd4a0f5ca187f27a04113830b025edd9236f (patch) | |
tree | 52ea8f8bf05d4004be7d4ed278d4532947d1eb0c | |
parent | 1148564ab75243c5f73bcd42d7814f04ee91b421 (diff) | |
download | poky-b79fbd4a0f5ca187f27a04113830b025edd9236f.tar.gz |
Revert "goarch: disable dynamic linking globally"
This reverts commit 827c60b79e7fcafd14e68870f6b69dcc48ac9c39.
Fixed with the drop of the linkmode
(From OE-Core rev: 137bb70ddf9dce30374cbb366196da0d8cc94205)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8f46f60a703defc3e74adad382320c129cef0b06)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/classes-recipe/goarch.bbclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes-recipe/goarch.bbclass b/meta/classes-recipe/goarch.bbclass index 6899ec28e4..1ebe03864f 100644 --- a/meta/classes-recipe/goarch.bbclass +++ b/meta/classes-recipe/goarch.bbclass | |||
@@ -38,13 +38,13 @@ BASE_GOARM:armv5 = '5' | |||
38 | # Go supports dynamic linking on a limited set of architectures. | 38 | # Go supports dynamic linking on a limited set of architectures. |
39 | # See the supportsDynlink function in go/src/cmd/compile/internal/gc/main.go | 39 | # See the supportsDynlink function in go/src/cmd/compile/internal/gc/main.go |
40 | GO_DYNLINK = "" | 40 | GO_DYNLINK = "" |
41 | GO_DYNLINK:arm = "" | 41 | GO_DYNLINK:arm ?= "1" |
42 | GO_DYNLINK:aarch64 = "" | 42 | GO_DYNLINK:aarch64 ?= "1" |
43 | GO_DYNLINK:x86 = "" | 43 | GO_DYNLINK:x86 ?= "1" |
44 | GO_DYNLINK:x86-64 = "" | 44 | GO_DYNLINK:x86-64 ?= "1" |
45 | GO_DYNLINK:powerpc64 = "" | 45 | GO_DYNLINK:powerpc64 ?= "1" |
46 | GO_DYNLINK:powerpc64le = "" | 46 | GO_DYNLINK:powerpc64le ?= "1" |
47 | GO_DYNLINK:class-native = "" | 47 | GO_DYNLINK:class-native ?= "" |
48 | GO_DYNLINK:class-nativesdk = "" | 48 | GO_DYNLINK:class-nativesdk = "" |
49 | 49 | ||
50 | # define here because everybody inherits this class | 50 | # define here because everybody inherits this class |