diff options
| -rw-r--r-- | recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch | 49 | ||||
| -rw-r--r-- | recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb | 2 |
2 files changed, 51 insertions, 0 deletions
diff --git a/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch b/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch new file mode 100644 index 00000000..87c4e82e --- /dev/null +++ b/recipes-multimedia/mediasdk/files/0001-FindITT.cmake-fix-detection-of-header-library.patch | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | From be7cec47777bd35c44a59f2af73f12ce9c26d65c Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anuj Mittal <anuj.mittal@intel.com> | ||
| 3 | Date: Wed, 7 Oct 2020 09:33:06 +0800 | ||
| 4 | Subject: [PATCH] FindITT.cmake: fix detection of header/library | ||
| 5 | |||
| 6 | Use find_library to check for the library so distributions installing to | ||
| 7 | standard locations can also work in addition to custom paths specified | ||
| 8 | using CMAKE_ITT_HOME. | ||
| 9 | |||
| 10 | Also add ittnotify to PATH_SUFFIXES for header for cases when | ||
| 11 | ittnotify.h is installed in /usr/include/ittnotify for example. | ||
| 12 | |||
| 13 | Upstream-Status: Submitted | ||
| 14 | |||
| 15 | Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> | ||
| 16 | --- | ||
| 17 | builder/FindITT.cmake | 6 +++--- | ||
| 18 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
| 19 | |||
| 20 | diff --git a/builder/FindITT.cmake b/builder/FindITT.cmake | ||
| 21 | index ba2542c5..d96acf2e 100644 | ||
| 22 | --- a/builder/FindITT.cmake | ||
| 23 | +++ b/builder/FindITT.cmake | ||
| 24 | @@ -35,19 +35,19 @@ if( ENABLE_ITT ) | ||
| 25 | |||
| 26 | find_path( ITT_INCLUDE_DIRS ittnotify.h | ||
| 27 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
| 28 | - PATH_SUFFIXES include ) | ||
| 29 | + PATH_SUFFIXES include ittnotify) | ||
| 30 | |||
| 31 | # Unfortunately SEAPI and VTune uses different names for itt library: | ||
| 32 | # * SEAPI uses libittnotify${arch}.a | ||
| 33 | # * VTune uses libittnotify.a | ||
| 34 | # We are trying to check both giving preference to SEAPI name. | ||
| 35 | - find_path( ITT_LIBRARY_DIRS libittnotify${arch}.a | ||
| 36 | + find_library( ITT_LIBRARY_DIRS ittnotify${arch} | ||
| 37 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
| 38 | PATH_SUFFIXES lib64 ) | ||
| 39 | if( NOT ITT_LIBRARY_DIRS MATCHES NOTFOUND ) | ||
| 40 | set( ITT_LIBRARIES "ittnotify${arch}" ) | ||
| 41 | else() | ||
| 42 | - find_path( ITT_LIBRARY_DIRS libittnotify.a | ||
| 43 | + find_library( ITT_LIBRARY_DIRS ittnotify | ||
| 44 | PATHS ${CMAKE_ITT_HOME} ${CMAKE_VTUNE_HOME} | ||
| 45 | PATH_SUFFIXES lib64 ) | ||
| 46 | if( NOT ITT_LIBRARY_PATH MATCHES NOTFOUND ) | ||
| 47 | -- | ||
| 48 | 2.26.2 | ||
| 49 | |||
diff --git a/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb b/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb index 5a7439c0..f2d6551d 100644 --- a/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb +++ b/recipes-multimedia/mediasdk/intel-mediasdk_20.2.1.bb | |||
| @@ -25,12 +25,14 @@ PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "x11", "dri3", "", d) | |||
| 25 | " | 25 | " |
| 26 | 26 | ||
| 27 | PACKAGECONFIG[dri3] = "-DENABLE_X11_DRI3=ON, -DENABLE_X11_DRI3=OFF" | 27 | PACKAGECONFIG[dri3] = "-DENABLE_X11_DRI3=ON, -DENABLE_X11_DRI3=OFF" |
| 28 | PACKAGECONFIG[itt] = "-DENABLE_ITT=ON, -DENABLE_ITT=OFF, itt" | ||
| 28 | PACKAGECONFIG[opencl] = "-DENABLE_OPENCL=ON, -DENABLE_OPENCL=OFF, ocl-icd opencl-clhpp opencl-headers" | 29 | PACKAGECONFIG[opencl] = "-DENABLE_OPENCL=ON, -DENABLE_OPENCL=OFF, ocl-icd opencl-clhpp opencl-headers" |
| 29 | PACKAGECONFIG[samples] = "-DBUILD_SAMPLES=ON, -DBUILD_SAMPLES=OFF" | 30 | PACKAGECONFIG[samples] = "-DBUILD_SAMPLES=ON, -DBUILD_SAMPLES=OFF" |
| 30 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native" | 31 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native" |
| 31 | 32 | ||
| 32 | SRC_URI = "git://github.com/Intel-Media-SDK/MediaSDK.git;protocol=https;branch=${BPN}-20.2;lfs=0 \ | 33 | SRC_URI = "git://github.com/Intel-Media-SDK/MediaSDK.git;protocol=https;branch=${BPN}-20.2;lfs=0 \ |
| 33 | file://0001-FindOpenCL.cmake-don-t-look-for-driver-at-build-time.patch \ | 34 | file://0001-FindOpenCL.cmake-don-t-look-for-driver-at-build-time.patch \ |
| 35 | file://0001-FindITT.cmake-fix-detection-of-header-library.patch \ | ||
| 34 | " | 36 | " |
| 35 | SRCREV = "f7ae8497b3e58a0ef8ad4ac94256f04928c20456" | 37 | SRCREV = "f7ae8497b3e58a0ef8ad4ac94256f04928c20456" |
| 36 | S = "${WORKDIR}/git" | 38 | S = "${WORKDIR}/git" |
