qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH for-7.0] meson.build: Fix dependency of page-vary-common.c to config-poison.h
@ 2022-03-30 11:48 Thomas Huth
  2022-03-30 12:05 ` Philippe Mathieu-Daudé
  2022-03-30 14:14 ` Richard Henderson
  0 siblings, 2 replies; 5+ messages in thread
From: Thomas Huth @ 2022-03-30 11:48 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel; +Cc: qemu-trivial, Richard Henderson

Before compiling page-vary-common.c, we have to make sure that
config-poison.h has been generated (which is in the "genh" list).

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/948
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index aef724ad3c..04ce33fef1 100644
--- a/meson.build
+++ b/meson.build
@@ -2881,7 +2881,7 @@ if get_option('b_lto')
   if get_option('cfi')
     pagevary_flags += '-fno-sanitize=cfi-icall'
   endif
-  pagevary = static_library('page-vary-common', sources: pagevary,
+  pagevary = static_library('page-vary-common', sources: pagevary + genh,
                             c_args: pagevary_flags)
   pagevary = declare_dependency(link_with: pagevary)
 endif
-- 
2.27.0



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

end of thread, other threads:[~2022-03-30 15:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-30 11:48 [PATCH for-7.0] meson.build: Fix dependency of page-vary-common.c to config-poison.h Thomas Huth
2022-03-30 12:05 ` Philippe Mathieu-Daudé
2022-03-30 12:24   ` Thomas Huth
2022-03-30 15:03   ` Paolo Bonzini
2022-03-30 14:14 ` Richard Henderson

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).