[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-4.21 v2 1/3] cirrus-ci: install libinotify for FreeBSD
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: Roger Pau Monne <roger.pau@xxxxxxxxxx>
- Date: Tue, 7 Oct 2025 09:00:54 +0200
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=citrix.com; dmarc=pass action=none header.from=citrix.com; dkim=pass header.d=citrix.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=W3bA8lUzNj8r1eo81eLbcNDAh2zqjwbhhkzCMfAeoKI=; b=Dsg+eirUq5GWIIVtLtmtJeHWRfYBv11KNd2QIdU8yNKfYc20jnlXumn2afyp0AjHVSuBUcbFOXJzfdWgf4EwRXRVUtlmdpIL+zYZ346qfsIPOcnDWJtFxW+YtURYA3829hZh6q6QVN/HV9iYfXhyWLfuyce8XWsnkmjCacJ9XyZ4cVTTWWuaZx3KLICGLu8YS1ajglFp7Bz1w9Z5xUxyV4W4kFGcmzUCx0vpaulonNU5nfvDgWjK4gFMV5GHm1bdH9/hsd3MB8lUvvbGxYQhj1m9RaGKhqcPMKeZjtnm3upsQFzq7hYb/ykhyqzpuXH1hYJlOUdperaarp7m+faoQQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=tEGHs4ycVFKQdXwPHs7zDc7wcnEoJ5Jft2XZsZOxzG7Ew18jViWNiV7tUguxpG5cCI1aaMb6f8VcEdDuAndyI/N2RaKM13hp52TvXHffLqEVHB4p1TnwZ7nj7qHpvPEbpfMlw2UiUO98nwMxS7W1G0H4fW78WkXM1wBZjHmgSXyQllEYiHePvV5XZYkOwy4xdHWVqsO/a3HPat4LxNVoQ2eG0YsWJ7BUOOv+b3T0w3q3HuCISwoaFH9ofdrnH+c/ao++JEYUyaZokvnYj6m1MgDNRofoVD52K0ml0Ojg3CgBuIfLeWdqIcBQcIYou2SP5WJHOEqBsF08TaV3MXufgA==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=citrix.com;
- Cc: oleksii.kurochko@xxxxxxxxx, Roger Pau Monne <roger.pau@xxxxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>
- Delivery-date: Tue, 07 Oct 2025 07:01:38 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
FreeBSD QEMU build requires libinotify, otherwise the build fails with:
./qemu-xen-dir-remote/meson.build:2535:15: ERROR: C shared or static library
'inotify' not found
Install the package and add the /usr/local include and libs paths
explicitly as QEMU configure options.
Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
.cirrus.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index f295c8cb0a02..10d8371ccc38 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -51,11 +51,12 @@ task:
install_script: pkg install -y seabios gmake ninja bash
pkgconf bison perl5
yajl lzo2 pixman argp-standalone
- libxml2 glib git python3
+ libxml2 glib git python3 libinotify
configure_script:
- cc --version
- ./configure --with-system-seabios=/usr/local/share/seabios/bios.bin
+
--with-extra-qemuu-configure-args="--extra-ldflags=-L${APPEND_LIB}
--extra-cflags=-I${APPEND_INCLUDES}"
- gmake -j`sysctl -n hw.ncpu` -C xen clang=y defconfig
<< : *FREEBSD_CONFIGURE_ARTIFACTS
--
2.51.0
|