X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=e5632607a9bd12cef04147bb4b4cbc0bbf02a3a9;hb=9cdb6c7988b2ab73a4536da1d8ec33d4083bb2d1;hp=341f60b877eaa5df081657ddbc234f0f268631cb;hpb=1773b6cc68ccd37bb8cbc2e920e46970f4079df5;p=plocate diff --git a/meson.build b/meson.build index 341f60b..e563260 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') @@ -7,12 +7,21 @@ cxx = meson.get_compiler('cpp') uringdep = dependency('liburing', required: false) zstddep = dependency('libzstd') threaddep = dependency('threads') -atomicdep = dependency('atomic', required: false) +atomicdep = cxx.find_library('atomic', required: false) 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 foo(); +__attribute__((target("sse2"))) void foo(); +void bar() { foo(); }''' +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,