Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openamp/libmetal: support other arch sim host #7279

Merged
merged 1 commit into from Oct 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions openamp/libmetal.defs
Expand Up @@ -21,7 +21,15 @@
ifeq ($(CONFIG_OPENAMP),y)

ifeq ($(CONFIG_ARCH), sim)
ifeq ($(CONFIG_HOST_ARM64), y)
LIBMETAL_ARCH = aarch64
else ifeq ($(CONFIG_HOST_ARM), y)
LIBMETAL_ARCH = arm
else ifeq ($(CONFIG_HOST_X86), y)
LIBMETAL_ARCH = x86
else
LIBMETAL_ARCH = x86_64
endif
else ifeq ($(CONFIG_ARCH), risc-v)
LIBMETAL_ARCH = riscv
else
Expand Down