mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
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>
This commit is contained in:
parent
c7437f0ddb
commit
c73272f52f
1 changed files with 3 additions and 2 deletions
|
@ -38,8 +38,9 @@ class FreeBSDVM(basevm.BaseVM):
|
||||||
cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
|
cd $(mktemp -d /home/qemu/qemu-test.XXXXXX);
|
||||||
mkdir src build; cd src;
|
mkdir src build; cd src;
|
||||||
tar -xf /dev/vtbd1;
|
tar -xf /dev/vtbd1;
|
||||||
cd ../build
|
cd ../build;
|
||||||
../src/configure --python=python3.9 {configure_opts};
|
../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};
|
gmake --output-sync -j{jobs} {target} {verbose};
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue