]> git.sesse.net Git - plocate/blobdiff - meson.build
Escape unprintable characters when outputting filenames to a terminal.
[plocate] / meson.build
index c976c028214e93934764b148e9e585f2a3c6bf9a..e5632607a9bd12cef04147bb4b4cbc0bbf02a3a9 100644 (file)
@@ -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')
@@ -15,7 +15,9 @@ 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