summaryrefslogtreecommitdiffstats
path: root/meta/classes/goarch.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/goarch.bbclass')
-rw-r--r--meta/classes/goarch.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass
index 39fea5e3d1..7aaf26aed1 100644
--- a/meta/classes/goarch.bbclass
+++ b/meta/classes/goarch.bbclass
@@ -68,6 +68,8 @@ def go_map_arch(a, d):
68 return 'ppc64' 68 return 'ppc64'
69 elif re.match('p(pc|owerpc)(64el)', a): 69 elif re.match('p(pc|owerpc)(64el)', a):
70 return 'ppc64le' 70 return 'ppc64le'
71 elif a == 'riscv64':
72 return 'riscv64'
71 else: 73 else:
72 raise bb.parse.SkipRecipe("Unsupported CPU architecture: %s" % a) 74 raise bb.parse.SkipRecipe("Unsupported CPU architecture: %s" % a)
73 75