aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-10-16 18:10:53 +0200
committerThomas Huth <thuth@redhat.com>2023-10-27 09:47:19 +0200
commitc73272f52fc0e7614e4110b147b9d6efb589854b (patch)
tree168a199930a78e93cc1c514028c8a60f13ace19f /tests
parentc7437f0ddb8ee45bf96d949ddfcbb7697ae3d415 (diff)
downloadqemu-c73272f52fc0e7614e4110b147b9d6efb589854b.zip
qemu-c73272f52fc0e7614e4110b147b9d6efb589854b.tar.gz
qemu-c73272f52fc0e7614e4110b147b9d6efb589854b.tar.bz2
tests/vm/freebsd: Add additional library paths for libfdt
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>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/vm/freebsd5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/vm/freebsd b/tests/vm/freebsd
index ac51376..b581bd1 100755
--- a/tests/vm/freebsd
+++ b/tests/vm/freebsd
@@ -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};
"""