From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Richard Henderson" <rth@twiddle.net>
Subject: [PATCH v5 05/11] rules.mak: Add base-arch() rule
Date: Fri, 5 Jun 2020 09:39:47 +0200 [thread overview]
Message-ID: <20200605073953.19268-6-philmd@redhat.com> (raw)
In-Reply-To: <20200605073953.19268-1-philmd@redhat.com>
Add a rule to return the base architecture for a QEMU target.
The current list of TARGET_BASE_ARCH is:
$ git grep TARGET_BASE_ARCH configure
configure:7785:TARGET_BASE_ARCH=""
configure:7795: TARGET_BASE_ARCH=i386
configure:7813: TARGET_BASE_ARCH=arm
configure:7846: TARGET_BASE_ARCH=mips
configure:7854: TARGET_BASE_ARCH=mips
configure:7864: TARGET_BASE_ARCH=openrisc
configure:7871: TARGET_BASE_ARCH=ppc
configure:7879: TARGET_BASE_ARCH=ppc
configure:7887: TARGET_BASE_ARCH=ppc
configure:7894: TARGET_BASE_ARCH=riscv
configure:7900: TARGET_BASE_ARCH=riscv
configure:7920: TARGET_BASE_ARCH=sparc
configure:7925: TARGET_BASE_ARCH=sparc
The rule can be tested calling 'print-base-arch-$TARGET':
$ make \
print-base-arch-openrisc \
print-base-arch-aarch64_be \
print-base-arch-x86_64 \
print-base-arch-mips64el \
print-base-arch-ppc64 \
print-base-arch-riscv64
openrisc=openrisc
aarch64_be=arm
x86_64=i386
mips64el=mips
ppc64=ppc
riscv64=riscv
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
v5:
- risc -> riscv (rth)
- use strequal (rth)
- add microblaze/sh4/xtensa
v4:
- use startwith()
- fix openrisc (rth)
---
rules.mak | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/rules.mak b/rules.mak
index ccc1c49604..907f9aca91 100644
--- a/rules.mak
+++ b/rules.mak
@@ -452,3 +452,38 @@ atomic = $(eval $1: $(call sentinel,$1) ; @:) \
print-%:
@echo '$*=$($*)'
+
+# base-arch
+# Usage: $(call base-arch, target)
+#
+# @target: the target architecture.
+#
+# This macro will return the base architecture for a target.
+#
+# As example, $(call base-arch, aarch64) returns 'arm'.
+base-arch = $(strip \
+ $(if $(call startwith,aarch64,$1),arm,\
+ $(if $(call startwith,arm,$1),arm,\
+ $(if $(call startwith,microblaze,$1),microblaze,\
+ $(if $(call startwith,mips,$1),mips,\
+ $(if $(call startwith,ppc,$1),ppc,\
+ $(if $(call startwith,riscv,$1),riscv,\
+ $(if $(call startwith,sh4,$1),sh4,\
+ $(if $(call startwith,sparc,$1),sparc,\
+ $(if $(call startwith,xtensa,$1),xtensa,\
+ $(if $(call strequal,x86_64,$1),i386,\
+ $1\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )\
+ )
+
+print-base-arch-%:
+ @echo '$*=$(call base-arch,$*)'
--
2.21.3
next prev parent reply other threads:[~2020-06-05 7:44 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-05 7:39 [PATCH v5 00/11] accel: Allow targets to use Kconfig Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 01/11] MAINTAINERS: Fix KVM path expansion glob Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 02/11] MAINTAINERS: Add an 'overall' entry for accelerators Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 03/11] MAINTAINERS: Add an entry for the HAX accelerator Philippe Mathieu-Daudé
2020-06-05 8:35 ` Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 04/11] rules.mak: Add strequal() and startwith() and rules Philippe Mathieu-Daudé
2020-06-05 7:42 ` Philippe Mathieu-Daudé
2020-06-05 12:48 ` Markus Armbruster
2020-06-05 12:53 ` Philippe Mathieu-Daudé
2020-06-05 7:39 ` Philippe Mathieu-Daudé [this message]
2020-06-05 7:39 ` [PATCH v5 06/11] Makefile: Remove dangerous EOL trailing backslash Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 07/11] Makefile: Write MINIKCONF variables as one entry per line Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 08/11] accel/Kconfig: Extract accel selectors into their own config Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 09/11] accel/Kconfig: Add the TCG selector Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 10/11] Makefile: Allow target-specific optional Kconfig Philippe Mathieu-Daudé
2020-06-05 7:39 ` [PATCH v5 11/11] accel/tcg: Add stub for probe_access() Philippe Mathieu-Daudé
2020-06-05 7:45 ` David Hildenbrand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200605073953.19268-6-philmd@redhat.com \
--to=philmd@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).