All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson.build: drop duplicate 'sparc64' entry
       [not found] <823880d6-ec51-e014-bc69-155102e1b43d@vivier.eu>
@ 2020-10-12 17:57 ` Sergei Trofimovich
  2020-10-12 19:15   ` Laurent Vivier
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Trofimovich @ 2020-10-12 17:57 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-trivial, Laurent Vivier, Sergei Trofimovich,
	Philippe Mathieu-Daudé

CC: Laurent Vivier <laurent@vivier.eu>
CC: qemu-trivial@nongnu.org
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index a02c743794..48e7c56cc1 100644
--- a/meson.build
+++ b/meson.build
@@ -41,7 +41,7 @@ have_block = have_system or have_tools
 python = import('python').find_installation()
 
 supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
-supported_cpus = ['ppc', 'ppc64', 's390x', 'sparc64', 'riscv32', 'riscv64', 'x86', 'x86_64',
+supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
   'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64']
 
 cpu = host_machine.cpu_family()
-- 
2.28.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] meson.build: drop duplicate 'sparc64' entry
  2020-10-12 17:57 ` [PATCH] meson.build: drop duplicate 'sparc64' entry Sergei Trofimovich
@ 2020-10-12 19:15   ` Laurent Vivier
  0 siblings, 0 replies; 3+ messages in thread
From: Laurent Vivier @ 2020-10-12 19:15 UTC (permalink / raw)
  To: Sergei Trofimovich, qemu-devel; +Cc: qemu-trivial, Philippe Mathieu-Daudé

Le 12/10/2020 à 19:57, Sergei Trofimovich a écrit :
> CC: Laurent Vivier <laurent@vivier.eu>
> CC: qemu-trivial@nongnu.org
> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
> ---
>  meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meson.build b/meson.build
> index a02c743794..48e7c56cc1 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -41,7 +41,7 @@ have_block = have_system or have_tools
>  python = import('python').find_installation()
>  
>  supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
> -supported_cpus = ['ppc', 'ppc64', 's390x', 'sparc64', 'riscv32', 'riscv64', 'x86', 'x86_64',
> +supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
>    'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64']
>  
>  cpu = host_machine.cpu_family()
> 

Applied to my trivial-patches branch.

Thanks,
Laurent



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] meson.build: drop duplicate 'sparc64' entry
       [not found] <20201006221827.1682106-1-slyfox@gentoo.org>
@ 2020-10-07  7:20 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-10-07  7:20 UTC (permalink / raw)
  To: Sergei Trofimovich; +Cc: QEMU Trivial, qemu-devel@nongnu.org Developers

On Wed, Oct 7, 2020 at 3:06 AM Sergei Trofimovich <slyfox@gentoo.org> wrote:
>
> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
> ---
>  meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meson.build b/meson.build
> index a02c743794..48e7c56cc1 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -41,7 +41,7 @@ have_block = have_system or have_tools
>  python = import('python').find_installation()
>
>  supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
> -supported_cpus = ['ppc', 'ppc64', 's390x', 'sparc64', 'riscv32', 'riscv64', 'x86', 'x86_64',
> +supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
>    'arm', 'aarch64', 'mips', 'mips64', 'sparc', 'sparc64']

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

>
>  cpu = host_machine.cpu_family()
> --
> 2.28.0
>
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-12 19:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <823880d6-ec51-e014-bc69-155102e1b43d@vivier.eu>
2020-10-12 17:57 ` [PATCH] meson.build: drop duplicate 'sparc64' entry Sergei Trofimovich
2020-10-12 19:15   ` Laurent Vivier
     [not found] <20201006221827.1682106-1-slyfox@gentoo.org>
2020-10-07  7:20 ` Philippe Mathieu-Daudé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.