xref: /openbmc/openbmc/poky/meta/lib/oe/rust.py (revision 864cc43b)
1#
2# Copyright OpenEmbedded Contributors
3#
4# SPDX-License-Identifier: MIT
5#
6
7# Handle mismatches between `uname -m`-style output and Rust's arch names
8def arch_to_rust_arch(arch):
9    if arch == "ppc64le":
10        return "powerpc64le"
11    if arch in ('riscv32', 'riscv64'):
12        return arch + 'gc'
13    return arch
14