All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson: Fix 'interpretor' typo
@ 2021-05-21 10:34 Philippe Mathieu-Daudé
  2021-06-05 19:03 ` Laurent Vivier
  0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-21 10:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Peter Maydell, Philippe Mathieu-Daudé

Fix a typo from commit fa2f7b0b9b7 ("meson: Warn when TCI is
selected but TCG backend is available").

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 1559e8d873a..230a0e4b558 100644
--- a/meson.build
+++ b/meson.build
@@ -247,7 +247,7 @@
       error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
     endif
   elif get_option('tcg_interpreter')
-    warning('Use of the TCG interpretor is not recommended on this host')
+    warning('Use of the TCG interpreter is not recommended on this host')
     warning('architecture. There is a native TCG execution backend available')
     warning('which provides substantially better performance and reliability.')
     warning('It is strongly recommended to remove the --enable-tcg-interpreter')
-- 
2.26.3



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

* Re: [PATCH] meson: Fix 'interpretor' typo
  2021-05-21 10:34 [PATCH] meson: Fix 'interpretor' typo Philippe Mathieu-Daudé
@ 2021-06-05 19:03 ` Laurent Vivier
  2021-11-06 14:53   ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 4+ messages in thread
From: Laurent Vivier @ 2021-06-05 19:03 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: qemu-trivial, Peter Maydell

Le 21/05/2021 à 12:34, Philippe Mathieu-Daudé a écrit :
> Fix a typo from commit fa2f7b0b9b7 ("meson: Warn when TCI is
> selected but TCG backend is available").
> 
> Reported-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> ---
>  meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meson.build b/meson.build
> index 1559e8d873a..230a0e4b558 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -247,7 +247,7 @@
>        error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
>      endif
>    elif get_option('tcg_interpreter')
> -    warning('Use of the TCG interpretor is not recommended on this host')
> +    warning('Use of the TCG interpreter is not recommended on this host')
>      warning('architecture. There is a native TCG execution backend available')
>      warning('which provides substantially better performance and reliability.')
>      warning('It is strongly recommended to remove the --enable-tcg-interpreter')
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>


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

* Re: [PATCH] meson: Fix 'interpretor' typo
  2021-06-05 19:03 ` Laurent Vivier
@ 2021-11-06 14:53   ` Philippe Mathieu-Daudé
  2021-11-06 16:33     ` Laurent Vivier
  0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-11-06 14:53 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: QEMU Trivial, Peter Maydell, QEMU Developers

ping...

https://lore.kernel.org/qemu-devel/20210521103423.2780345-1-philmd@redhat.com/

On Sat, Jun 5, 2021 at 9:03 PM Laurent Vivier <laurent@vivier.eu> wrote:
>
> Le 21/05/2021 à 12:34, Philippe Mathieu-Daudé a écrit :
> > Fix a typo from commit fa2f7b0b9b7 ("meson: Warn when TCI is
> > selected but TCG backend is available").
> >
> > Reported-by: Peter Maydell <peter.maydell@linaro.org>
> > Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> > ---
> >  meson.build | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meson.build b/meson.build
> > index 1559e8d873a..230a0e4b558 100644
> > --- a/meson.build
> > +++ b/meson.build
> > @@ -247,7 +247,7 @@
> >        error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
> >      endif
> >    elif get_option('tcg_interpreter')
> > -    warning('Use of the TCG interpretor is not recommended on this host')
> > +    warning('Use of the TCG interpreter is not recommended on this host')
> >      warning('architecture. There is a native TCG execution backend available')
> >      warning('which provides substantially better performance and reliability.')
> >      warning('It is strongly recommended to remove the --enable-tcg-interpreter')
> >
>
> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
>



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

* Re: [PATCH] meson: Fix 'interpretor' typo
  2021-11-06 14:53   ` Philippe Mathieu-Daudé
@ 2021-11-06 16:33     ` Laurent Vivier
  0 siblings, 0 replies; 4+ messages in thread
From: Laurent Vivier @ 2021-11-06 16:33 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: QEMU Trivial, Peter Maydell, QEMU Developers

Le 06/11/2021 à 15:53, Philippe Mathieu-Daudé a écrit :
> ping...
> 
> https://lore.kernel.org/qemu-devel/20210521103423.2780345-1-philmd@redhat.com/
> 
> On Sat, Jun 5, 2021 at 9:03 PM Laurent Vivier <laurent@vivier.eu> wrote:
>>
>> Le 21/05/2021 à 12:34, Philippe Mathieu-Daudé a écrit :
>>> Fix a typo from commit fa2f7b0b9b7 ("meson: Warn when TCI is
>>> selected but TCG backend is available").
>>>
>>> Reported-by: Peter Maydell <peter.maydell@linaro.org>
>>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>>> ---
>>>   meson.build | 2 +-
>>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/meson.build b/meson.build
>>> index 1559e8d873a..230a0e4b558 100644
>>> --- a/meson.build
>>> +++ b/meson.build
>>> @@ -247,7 +247,7 @@
>>>         error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
>>>       endif
>>>     elif get_option('tcg_interpreter')
>>> -    warning('Use of the TCG interpretor is not recommended on this host')
>>> +    warning('Use of the TCG interpreter is not recommended on this host')
>>>       warning('architecture. There is a native TCG execution backend available')
>>>       warning('which provides substantially better performance and reliability.')
>>>       warning('It is strongly recommended to remove the --enable-tcg-interpreter')
>>>
>>
>> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
>>
> 
> 

Applied to my trivial-patches branch.

Thanks,
Laurent



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

end of thread, other threads:[~2021-11-06 16:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-21 10:34 [PATCH] meson: Fix 'interpretor' typo Philippe Mathieu-Daudé
2021-06-05 19:03 ` Laurent Vivier
2021-11-06 14:53   ` Philippe Mathieu-Daudé
2021-11-06 16:33     ` Laurent Vivier

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.