diff options
author | Matt Madison <matt@madison.systems> | 2018-03-04 13:09:31 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-06 06:36:33 -0800 |
commit | fde7017f9735c0d317023022817b28771df53109 (patch) | |
tree | 01b48a6f9be8db510e62b2c0ce0d024bd85f3332 | |
parent | 11037462d80cefbee90a69e6a8a95895375ed6da (diff) | |
download | openembedded-core-fde7017f9735c0d317023022817b28771df53109.tar.gz openembedded-core-fde7017f9735c0d317023022817b28771df53109.tar.bz2 openembedded-core-fde7017f9735c0d317023022817b28771df53109.zip |
goarch.bbclass: disable shared runtime for nativesdk builds
While useful on embedded devices for saving disk space, use
of shared runtime in Go is not the usual practice, so disable
it for nativesdk builds. We don't use it for native builds,
either, so this makes the SDK match the native environment
more closely.
Signed-off-by: Matt Madison <matt@madison.systems>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/goarch.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass index 1021b94d4c..5c8ed33b15 100644 --- a/meta/classes/goarch.bbclass +++ b/meta/classes/goarch.bbclass @@ -24,6 +24,7 @@ GO_DYNLINK_x86 = "1" GO_DYNLINK_x86-64 = "1" GO_DYNLINK_powerpc64 = "1" GO_DYNLINK_class-native = "" +GO_DYNLINK_class-nativesdk = "" # define here because everybody inherits this class # |