X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=9dc7c1514acc323d551f7ea018aef22a58b58d26;hb=acce03bb32917e21f2d1d49c5a460d3cd2f72a11;hp=913fc0f8a98b04d5a2c690652eb29e8ba2a8d340;hpb=601e6fef22bc018be1ca3b19215e54a2c2edcb9d;p=plocate diff --git a/meson.build b/meson.build index 913fc0f..9dc7c15 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.4-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.8-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -7,16 +7,29 @@ cxx = meson.get_compiler('cpp') uringdep = dependency('liburing', required: false) zstddep = dependency('libzstd') threaddep = dependency('threads') +atomicdep = cxx.find_library('atomic', required: false) if not uringdep.found() add_project_arguments('-DWITHOUT_URING', language: 'cpp') endif +if cxx.has_header('endian.h') + add_project_arguments('-DHAS_ENDIAN_H', 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], +executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp', 'serializer.cpp', 'access_rx_cache.cpp', 'needle.cpp', 'complete_pread.cpp'], + dependencies: [uringdep, zstddep, threaddep, atomicdep], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) -executable('plocate-build', 'plocate-build.cpp', +executable('plocate-build', ['plocate-build.cpp', 'database-builder.cpp'], dependencies: [zstddep], install: true, install_dir: get_option('sbindir'))