[PATCH] tests/vm/freebsd: Add additional library paths for libfdt

Thomas Huth posted 1 patch 11 months, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20231016161053.39150-1-thuth@redhat.com
Maintainers: Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, Ed Maste <emaste@freebsd.org>, Li-Wen Hsu <lwhsu@freebsd.org>, "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Beraldo Leal <bleal@redhat.com>
tests/vm/freebsd | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
[PATCH] tests/vm/freebsd: Add additional library paths for libfdt
Posted by Thomas Huth 11 months, 1 week ago
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.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 tests/vm/freebsd | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/vm/freebsd b/tests/vm/freebsd
index ac51376c82..b581bd17fb 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};
     """
 
-- 
2.41.0
Re: [PATCH] tests/vm/freebsd: Add additional library paths for libfdt
Posted by Warner Losh 11 months, 1 week ago
On Mon, Oct 16, 2023, 10:11 AM Thomas Huth <thuth@redhat.com> wrote:

> 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.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  tests/vm/freebsd | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>

Reviewed-by: Warner Losh <imp@bsdimp.com>

diff --git a/tests/vm/freebsd b/tests/vm/freebsd
> index ac51376c82..b581bd17fb 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};
>      """
>
> --
> 2.41.0
>
>