X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=0c79ddf04c98608ebdd7125834ada46a176fdc96;hb=97c57726bc81c979386c623ad7586c2677fdd865;hp=0c0a53f20bd74fb5879105090f7b90b2c159e3ab;hpb=6d653bc20ef8025d50fd4ef143b6bac2955fc74c;p=plocate diff --git a/meson.build b/meson.build index 0c0a53f..0c79ddf 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.5-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.6-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -13,6 +13,13 @@ if not uringdep.found() add_project_arguments('-DWITHOUT_URING', language: 'cpp') endif +# Function multiversioning is x86-only _and_ not available on certain targets +# (they need “ifunc”, indirect functions, a GNU extension). +code = '__attribute__((target("default"))) void func();' +if cxx.compiles(code, name: 'function multiversioning') + add_project_arguments('-DHAS_FUNCTION_MULTIVERSIONING', language: 'cpp') +endif + executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp', 'serializer.cpp', 'access_rx_cache.cpp', 'needle.cpp'], dependencies: [uringdep, zstddep, threaddep, atomicdep], install: true,