Module: Mesa Branch: master Commit: a2a1b0e75ef9adeb17468509c5f6331b42f6dc2e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a2a1b0e75ef9adeb17468509c5f6331b42f6dc2e
Author: Marc Dietrich <[email protected]> Date: Wed Jan 24 22:03:51 2018 +0100 meson: fix HAVE_LLVM version define in meson build LLVM patch level is not included in HAVE_LLVM. Fixes: e6418ab1566d ("meson: build "radv" vulkan driver for radeon hardware") Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]> Signed-off-by: Marc Dietrich <[email protected]> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index eb85a4a593..222b79d75c 100644 --- a/meson.build +++ b/meson.build @@ -1025,7 +1025,7 @@ if with_llvm _llvm_patch = _llvm_patch.split('s')[0] endif pre_args += [ - '-DHAVE_LLVM=0x0@0@@1@@2@'.format(_llvm_version[0], _llvm_version[1], _llvm_patch), + '-DHAVE_LLVM=0x0@0@0@1@'.format(_llvm_version[0], _llvm_version[1]), '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch), ] elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
