[Qemu-devel] [RISU v2 08/11] configure: add i386/x86_64 architectures

Jan Bobek posted 11 patches 6 years, 5 months ago
There is a newer version of this series
[Qemu-devel] [RISU v2 08/11] configure: add i386/x86_64 architectures
Posted by Jan Bobek 6 years, 5 months ago
Now that i386 and x86_64 architectures are supported by RISU, we want
to detect them and build RISU for them automatically.

Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Jan Bobek <jan.bobek@gmail.com>
---
 configure | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/configure b/configure
index 65e1819..ca2d7db 100755
--- a/configure
+++ b/configure
@@ -48,12 +48,14 @@ EOF
 }
 
 guess_arch() {
-    if check_define __m68k__ ; then
-        ARCH="m68k"
+    if check_define __aarch64__ ; then
+        ARCH="aarch64"
     elif check_define __arm__ ; then
         ARCH="arm"
-    elif check_define __aarch64__ ; then
-        ARCH="aarch64"
+    elif check_define __i386__ || check_define __x86_64__ ; then
+        ARCH="i386"
+    elif check_define __m68k__ ; then
+        ARCH="m68k"
     elif check_define __powerpc64__ ; then
         ARCH="ppc64"
     else
-- 
2.20.1


Re: [Qemu-devel] [RISU v2 08/11] configure: add i386/x86_64 architectures
Posted by Alex Bennée 6 years, 5 months ago
Jan Bobek <jan.bobek@gmail.com> writes:

> Now that i386 and x86_64 architectures are supported by RISU, we want
> to detect them and build RISU for them automatically.
>
> Suggested-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Jan Bobek <jan.bobek@gmail.com>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

> ---
>  configure | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/configure b/configure
> index 65e1819..ca2d7db 100755
> --- a/configure
> +++ b/configure
> @@ -48,12 +48,14 @@ EOF
>  }
>
>  guess_arch() {
> -    if check_define __m68k__ ; then
> -        ARCH="m68k"
> +    if check_define __aarch64__ ; then
> +        ARCH="aarch64"
>      elif check_define __arm__ ; then
>          ARCH="arm"
> -    elif check_define __aarch64__ ; then
> -        ARCH="aarch64"
> +    elif check_define __i386__ || check_define __x86_64__ ; then
> +        ARCH="i386"
> +    elif check_define __m68k__ ; then
> +        ARCH="m68k"
>      elif check_define __powerpc64__ ; then
>          ARCH="ppc64"
>      else


--
Alex Bennée

Re: [Qemu-devel] [RISU v2 08/11] configure: add i386/x86_64 architectures
Posted by Richard Henderson 6 years, 5 months ago
On 5/17/19 3:44 PM, Jan Bobek wrote:
> Now that i386 and x86_64 architectures are supported by RISU, we want
> to detect them and build RISU for them automatically.
> 
> Suggested-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Jan Bobek <jan.bobek@gmail.com>
> ---
>  configure | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)


Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~