From: Juan Quintela Date: Mon, 2 May 2022 13:11:19 +0000 (+0200) Subject: meson: Make mremap() detecting works correctly X-Git-Tag: v7.1.0-rc0~104^2~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=354d2d9b87658bab5da58b4251aeb612fa7dc6e4;p=thirdparty%2Fqemu.git meson: Make mremap() detecting works correctly Without this (at least in Fedora 35) it don't detect mremap() correctly. Signed-off-by: Juan Quintela Message-Id: <20220502131119.2345-1-quintela@redhat.com> [Also switch the LEGACY_RDMA_REG_MR test to cc.links, otherwise Debian fails to build. - Paolo] Signed-off-by: Paolo Bonzini --- diff --git a/meson.build b/meson.build index 864e97945fe..03f63e95e28 100644 --- a/meson.build +++ b/meson.build @@ -2179,7 +2179,8 @@ config_host_data.set('CONFIG_AVX512F_OPT', get_option('avx512f') \ have_pvrdma = get_option('pvrdma') \ .require(rdma.found(), error_message: 'PVRDMA requires OpenFabrics libraries') \ - .require(cc.compiles(''' + .require(cc.compiles(gnu_source_prefix + ''' + #include int main(void) { char buf = 0; @@ -2190,7 +2191,7 @@ have_pvrdma = get_option('pvrdma') \ }'''), error_message: 'PVRDMA requires mremap').allowed() if have_pvrdma - config_host_data.set('LEGACY_RDMA_REG_MR', not cc.compiles(''' + config_host_data.set('LEGACY_RDMA_REG_MR', not cc.links(''' #include int main(void) {