summaryrefslogtreecommitdiff
path: root/package/opencv
diff options
context:
space:
mode:
authorSamuel Martin <s.martin49@gmail.com>2016-05-14 23:09:14 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-05-15 21:31:45 +0200
commit07144093d4fd0d5c6f59006a0e58fd5074da0f92 (patch)
tree135c61d31fd8477b08e3ddc93dc2cca4c5cb6881 /package/opencv
parent6e1174c2689a73707c64c55d88d2e5dcd8379bb8 (diff)
package/opencv: gpu module depends on !BR2_STATIC_LIBS
GPU support and related features (GL and CL) are detected and loaded at runtime, so it requires libdl which is only available on !BR2_STATIC_LIBS builds. Because the OpenCV tests sets use these modules, they also requires libdl, so they cannot be built when BR2_STATIC_LIBS is enable. Fixes: http://autobuild.buildroot.net/results/570/57007a8d22d20b2fc5cd64154f5ec674b0842afa/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/opencv')
-rw-r--r--package/opencv/Config.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/opencv/Config.in b/package/opencv/Config.in
index d06135ced..05c1fc157 100644
--- a/package/opencv/Config.in
+++ b/package/opencv/Config.in
@@ -58,9 +58,13 @@ config BR2_PACKAGE_OPENCV_LIB_GPU
select BR2_PACKAGE_OPENCV_LIB_OBJDETECT
select BR2_PACKAGE_OPENCV_LIB_PHOTO
select BR2_PACKAGE_OPENCV_LIB_VIDEO
+ depends on !BR2_STATIC_LIBS
help
Include opencv_gpu module into the OpenCV build.
+comment "gpu module needs a toolchain w/ dynamic libraries"
+ depends on BR2_STATIC_LIBS
+
config BR2_PACKAGE_OPENCV_LIB_HIGHGUI
bool "highgui"
default y
@@ -168,13 +172,21 @@ config BR2_PACKAGE_OPENCV_LIB_VIDEOSTAB
help
Include opencv_videostab module into the OpenCV build.
+if !BR2_STATIC_LIBS
+
comment "Test sets"
+
config BR2_PACKAGE_OPENCV_BUILD_TESTS
bool "build tests"
config BR2_PACKAGE_OPENCV_BUILD_PERF_TESTS
bool "build performance tests"
+endif
+
+comment "Tests sets need a toolchain w/ dynamic libraries"
+ depends on BR2_STATIC_LIBS
+
comment "3rd party support"
config BR2_PACKAGE_OPENCV_WITH_FFMPEG