From 23b0172ee9fb53e4b213e7223c9bf05d40df2180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= Date: Tue, 6 Nov 2018 12:40:12 +0100 Subject: [PATCH] msdk: fix intel sdk libdir path the 2018.3.1 intel sdk release places libraries into /lib64 instead of /lib/lin_x64 or /lib/x64, this commit adds /lib64 to the libdir locations list Fixes #815 --- sys/msdk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/msdk/meson.build b/sys/msdk/meson.build index fa4fa3cc3c..bf3fb21793 100644 --- a/sys/msdk/meson.build +++ b/sys/msdk/meson.build @@ -45,7 +45,7 @@ have_msdk = false msdk_dep = [] if msdk_root != '' - msdk_libdir = [msdk_root + '/lib/lin_x64', msdk_root + '/lib/x64'] + msdk_libdir = [msdk_root + '/lib/lin_x64', msdk_root + '/lib/x64', msdk_root + '/lib64'] msdk_incdir = include_directories(msdk_root + '/include') msdk_lib = cxx.find_library('mfx', dirs: msdk_libdir, required: msdk_option) if host_machine.system() == 'windows'