clover/meson: Ignore 'svn' suffix when computing CLANG_RESOURCE_DIR
authorPierre Moreau <pierre.morrow@free.fr>
Mon, 7 Jan 2019 20:30:17 +0000 (21:30 +0100)
committerDylan Baker <dylan@pnwbakers.com>
Tue, 8 Jan 2019 16:53:38 +0000 (08:53 -0800)
The version exported by LLVM in its CMake configuration files can
include the “svn” suffix when building a development version (for
example “8.0.0svn”). However the exported clang headers are still found
under “lib/clang/8.0.0/”, without the “svn” suffix.
Meson takes care of removing the “svn” suffix from the version when
using the dependency’s `version()` method.

This processing is already performed in “configure.ac” when using
autotools.

Signed-off-by: Pierre Moreau <pierre.morrow@free.fr>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
src/gallium/state_trackers/clover/meson.build

index a6729af2fb8649d3cdc8534cbd7be217fee68b2a..62ac5f5278d729dd968400b7835bbe8c9ac122aa 100644 (file)
@@ -53,7 +53,7 @@ libclllvm = static_library(
     '-DLIBCLC_LIBEXECDIR="@0@/"'.format(dep_clc.get_pkgconfig_variable('libexecdir')),
     '-DCLANG_RESOURCE_DIR="@0@"'.format(join_paths(
       dep_llvm.get_configtool_variable('libdir'), 'clang',
-      dep_llvm.get_configtool_variable('version'), 'include',
+      dep_llvm.version(), 'include',
     )),
   ],
   dependencies : [dep_llvm, dep_elf],