qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 13/24] configure, meson: move remaining HAVE_* compiler te


From: Thomas Huth
Subject: Re: [PATCH v2 13/24] configure, meson: move remaining HAVE_* compiler tests to Meson
Date: Tue, 12 Oct 2021 15:17:01 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0

On 12/10/2021 13.12, Paolo Bonzini wrote:
Remove some special cases by moving them to Meson.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20211007130829.632254-8-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
...
@@ -1609,7 +1626,8 @@ config_host_data.set('HAVE_BROKEN_SIZE_MAX', not 
cc.compiles('''
          return printf("%zu", SIZE_MAX);
      }''', args: ['-Werror']))
-ignored = ['CONFIG_QEMU_INTERP_PREFIX'] # actually per-target
+ignored = ['CONFIG_QEMU_INTERP_PREFIX', # actually per-target
+    'HAVE_GDB_BIN']

That HAVE_GDB_BIN shows up here a little bit by surprise ... maybe mention it in the patch description?

  arrays = ['CONFIG_BDRV_RW_WHITELIST', 'CONFIG_BDRV_RO_WHITELIST']
  strings = ['CONFIG_IASL']
  foreach k, v: config_host
@@ -1624,7 +1642,7 @@ foreach k, v: config_host
      config_host_data.set('HOST_' + v.to_upper(), 1)
    elif strings.contains(k)
      config_host_data.set_quoted(k, v)
-  elif k.startswith('CONFIG_') or k.startswith('HAVE_')
+  elif k.startswith('CONFIG_')
      config_host_data.set(k, v == 'y' ? 1 : v)
    endif
  endforeach


Reviewed-by: Thomas Huth <thuth@redhat.com>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]