mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
lib/oe/go: document map_arch, and raise an error on unknown architecture
Add a comment explaining what this function does and where the values come from. If the architecture isn't know, instead of returning an empty string which could fail mysteriously, raise a KeyError so it fails quickly. (From OE-Core rev: 025414c16319b068df1cd757ad9a3c987a6b871d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
81ad1de523
commit
18319c08ad
+5
-1
@@ -7,6 +7,10 @@
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
def map_arch(a):
|
def map_arch(a):
|
||||||
|
"""
|
||||||
|
Map our architecture names to Go's GOARCH names.
|
||||||
|
See https://github.com/golang/go/blob/master/src/internal/syslist/syslist.go for the complete list.
|
||||||
|
"""
|
||||||
if re.match('i.86', a):
|
if re.match('i.86', a):
|
||||||
return '386'
|
return '386'
|
||||||
elif a == 'x86_64':
|
elif a == 'x86_64':
|
||||||
@@ -31,4 +35,4 @@ def map_arch(a):
|
|||||||
return 'riscv64'
|
return 'riscv64'
|
||||||
elif a == 'loongarch64':
|
elif a == 'loongarch64':
|
||||||
return 'loong64'
|
return 'loong64'
|
||||||
return ''
|
raise KeyError(f"Cannot map architecture {a}")
|
||||||
|
|||||||
Reference in New Issue
Block a user