Merge "Support gdbclient.py on riscv64"

This commit is contained in:
Elliott Hughes
2023-06-21 14:12:35 +00:00
committed by Gerrit Code Review

View File

@@ -56,6 +56,7 @@ def get_lldb_server_path(root: str, clang_base: str, clang_version: str, arch: s
arch = {
'arm': 'arm',
'arm64': 'aarch64',
'riscv64': 'riscv64',
'x86': 'i386',
'x86_64': 'x86_64',
}[arch]