X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=9eb87c0772ee1776b0d15319163b79821a53225f;hb=82032c6bc29171a312f333ec44f226d532c03607;hp=2e151f893a6dc6ecb3d5362411860a2c18b0350a;hpb=f082b5f7b670cac00e53c0f4a03d0aa2e4da9898;p=plocate diff --git a/meson.build b/meson.build index 2e151f8..9eb87c0 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') +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') @@ -12,10 +12,15 @@ 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 func();' +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