All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson: Set implicit_include_directories to false
@ 2021-04-29  2:43 Katsuhiro Ueno
  2021-04-30  7:48 ` Paolo Bonzini
  2021-05-16 14:05 ` Alexander Graf
  0 siblings, 2 replies; 5+ messages in thread
From: Katsuhiro Ueno @ 2021-04-29  2:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial

Without this, libvixl cannot be compiled with macOS 11.3 SDK due to
include file name conflict (usr/include/c++/v1/version conflicts with
VERSION).

Signed-off-by: Katsuhiro Ueno <uenobk@gmail.com>
---
 meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meson.build b/meson.build
index c6f4b0cf5e..d007bff8c3 100644
--- a/meson.build
+++ b/meson.build
@@ -2129,6 +2129,7 @@ common_all = common_ss.apply(config_all, strict: false)
 common_all = static_library('common',
                             build_by_default: false,
                             sources: common_all.sources() + genh,
+                            implicit_include_directories: false,
                             dependencies: common_all.dependencies(),
                             name_suffix: 'fa')

-- 
2.30.1 (Apple Git-130)


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

end of thread, other threads:[~2021-05-17 11:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29  2:43 [PATCH] meson: Set implicit_include_directories to false Katsuhiro Ueno
2021-04-30  7:48 ` Paolo Bonzini
2021-05-01  2:08   ` Katsuhiro Ueno
2021-05-17 11:41     ` Paolo Bonzini
2021-05-16 14:05 ` Alexander Graf

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.