[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 06/40] build: validate that system capstone works before using it
|
From: |
Alex Bennée |
|
Subject: |
[PULL 06/40] build: validate that system capstone works before using it |
|
Date: |
Mon, 12 Jul 2021 13:26:19 +0100 |
From: Daniel P. Berrangé <berrange@redhat.com>
Some versions of capstone have shipped a broken pkg-config file which
puts the -I path without the trailing '/capstone' suffix. This breaks
the ability to "#include <capstone.h>". Upstream and most distros have
fixed this, but a few stragglers remain, notably FreeBSD.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210625172211.451010-2-berrange@redhat.com>
Message-Id: <20210709143005.1554-7-alex.bennee@linaro.org>
diff --git a/meson.build b/meson.build
index eb362ee5eb..cea8196e53 100644
--- a/meson.build
+++ b/meson.build
@@ -1644,6 +1644,19 @@ if capstone_opt in ['enabled', 'auto', 'system']
kwargs: static_kwargs, method: 'pkg-config',
required: capstone_opt == 'system' or
capstone_opt == 'enabled' and not
have_internal)
+
+ # Some versions of capstone have broken pkg-config file
+ # that reports a wrong -I path, causing the #include to
+ # fail later. If the system has such a broken version
+ # do not use it.
+ if capstone.found() and not cc.compiles('#include <capstone.h>',
+ dependencies: [capstone])
+ capstone = not_found
+ if capstone_opt == 'system'
+ error('system capstone requested, it does not appear to work')
+ endif
+ endif
+
if capstone.found()
capstone_opt = 'system'
elif have_internal
--
2.20.1
- [PULL for 6.1 00/40] testing and plugin updates, Alex Bennée, 2021/07/12
- [PULL 01/40] Jobs based on custom runners: documentation and configuration placeholder, Alex Bennée, 2021/07/12
- [PULL 02/40] Jobs based on custom runners: build environment docs and playbook, Alex Bennée, 2021/07/12
- [PULL 03/40] Jobs based on custom runners: docs and gitlab-runner setup playbook, Alex Bennée, 2021/07/12
- [PULL 06/40] build: validate that system capstone works before using it,
Alex Bennée <=
- [PULL 04/40] Jobs based on custom runners: add job definitions for QEMU's machines, Alex Bennée, 2021/07/12
- [PULL 09/40] hw/usb/ccid: remove references to NSS, Alex Bennée, 2021/07/12
- [PULL 05/40] tests/tcg: also disable the signals test for plugins, Alex Bennée, 2021/07/12
- [PULL 31/40] configure: stop user enabling plugins on Windows for now, Alex Bennée, 2021/07/12
- [PULL 07/40] gitlab: support for FreeBSD 12, 13 and macOS 11 via cirrus-run, Alex Bennée, 2021/07/12
- [PULL 08/40] cirrus: delete FreeBSD and macOS jobs, Alex Bennée, 2021/07/12
- [PULL 10/40] tests/docker: don't use BUILDKIT in GitLab either, Alex Bennée, 2021/07/12
- [PULL 36/40] plugins: Added a new cache modelling plugin, Alex Bennée, 2021/07/12
- [PULL 29/40] configure: don't allow plugins to be enabled for a non-TCG build, Alex Bennée, 2021/07/12
- [PULL 27/40] plugins: fix-up handling of internal hostaddr for 32 bit, Alex Bennée, 2021/07/12