mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 21:33:39 -09:00
package/opencv4: add missing Config.in comments on gcc >= 8
Commit75ab6cf93a("package/{python-}protobuf: bump to version 28.1") added a whole bunch of gcc >= 8 dependencies to opencv4 options, but forgot to create or update appropriate Config.in comments for several options: BR2_PACKAGE_OPENCV4_LIB_OBJDETECT BR2_PACKAGE_OPENCV4_LIB_STITCHING BR2_PACKAGE_OPENCV4_WITH_PROTOBUF Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr> (cherry picked from commit73e9b996fb) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Thomas Perale
parent
c5ef366701
commit
b8638757b2
@@ -158,9 +158,10 @@ config BR2_PACKAGE_OPENCV4_LIB_OBJDETECT
|
||||
Include opencv_objdetect (object detection) module into the
|
||||
OpenCV build.
|
||||
|
||||
comment "objdetect needs a glibc or musl toolchain"
|
||||
comment "objdetect needs a glibc or musl toolchain w/ gcc 8"
|
||||
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_USES_UCLIBC
|
||||
depends on BR2_TOOLCHAIN_USES_UCLIBC || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_8
|
||||
|
||||
config BR2_PACKAGE_OPENCV4_LIB_PHOTO
|
||||
bool "photo"
|
||||
@@ -208,9 +209,10 @@ config BR2_PACKAGE_OPENCV4_LIB_STITCHING
|
||||
Include opencv_stitching (images stitching) module into the
|
||||
OpenCV build.
|
||||
|
||||
comment "stitching needs a glibc or musl toolchain"
|
||||
comment "stitching needs a glibc or musl toolchain w/ gcc >= 8"
|
||||
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
||||
depends on BR2_TOOLCHAIN_USES_UCLIBC
|
||||
depends on BR2_TOOLCHAIN_USES_UCLIBC || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_8
|
||||
|
||||
config BR2_PACKAGE_OPENCV4_LIB_SUPERRES
|
||||
bool "superres"
|
||||
@@ -333,6 +335,10 @@ config BR2_PACKAGE_OPENCV4_WITH_PROTOBUF
|
||||
help
|
||||
Use shared protobuf from the target system.
|
||||
|
||||
comment "protobuf support needs a toolchain w/ gcc >= 8"
|
||||
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
||||
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_8
|
||||
|
||||
config BR2_PACKAGE_OPENCV4_WITH_TBB
|
||||
bool "tbb support"
|
||||
depends on !BR2_TOOLCHAIN_USES_UCLIBC # tbb
|
||||
|
||||
Reference in New Issue
Block a user