[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: total fail on FreeBSD 14.0 amd64 regardless of compiler
From: |
Thomas Huth |
Subject: |
Re: total fail on FreeBSD 14.0 amd64 regardless of compiler |
Date: |
Mon, 10 Oct 2022 09:21:51 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.13.0 |
On 10/10/2022 08.56, Dennis Clarke wrote:
re: https://lists.nongnu.org/archive/html/qemu-devel/2022-10/msg01249.html
Using GCC 12 is even worse :
[2040/6841] Compiling C object qemu-system-aarch64.p/softmmu_main.c.o
[2041/6841] Linking target qemu-system-aarch64
FAILED: qemu-system-aarch64
/usr/local/bin/g++12 -m64 -mcx16 @qemu-system-aarch64.rsp
/usr/local/bin/ld: libqemuutil.a.p/util_filemonitor-inotify.c.o: undefined
reference to symbol 'inotify_init1'
Now that sounds like the detection for inotify_init1 did not work
right in the meson.build script...
Looking at meson.build:
config_host_data.set('CONFIG_INOTIFY1',
cc.has_header_symbol('sys/inotify.h', 'inotify_init1'))
... do you have such a "inotify.h" header on your FreeBSD system
and does it contain an inotify_init1 function?
Thomas