]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests/vm/freebsd: Add additional library paths for libfdt
authorThomas Huth <thuth@redhat.com>
Mon, 16 Oct 2023 16:10:53 +0000 (18:10 +0200)
committerThomas Huth <thuth@redhat.com>
Fri, 27 Oct 2023 07:47:19 +0000 (09:47 +0200)
libfdt is installed in /usr/local on FreeBSD, and since this
library does not have a pkg-config file, we have to specify the
paths manually. This way we can avoid that Meson has to recompile
the dtc subproject each time.

Message-ID: <20231016161053.39150-1-thuth@redhat.com>
Reviewed-by: Warner Losh <imp@bsdimp.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/vm/freebsd

index ac51376c82b9ff5c76087a6f615748a82587e274..b581bd17fb7c28963d93c5ed91c89a4642634dfb 100755 (executable)
@@ -38,8 +38,9 @@ class FreeBSDVM(basevm.BaseVM):
         cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
         mkdir src build; cd src;
         tar -xf /dev/vtbd1;
-        cd ../build
-        ../src/configure --python=python3.9 {configure_opts};
+        cd ../build;
+        ../src/configure --python=python3.9  --extra-ldflags=-L/usr/local/lib \
+                         --extra-cflags=-I/usr/local/include {configure_opts};
         gmake --output-sync -j{jobs} {target} {verbose};
     """