mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/opencv4: add missing Config.in comments on gcc >= 8
Commit
75ab6cf93a ("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>
This commit is contained in:
committed by
Julien Olivain
parent
a67ab908d4
commit
73e9b996fb
@@ -157,9 +157,10 @@ config BR2_PACKAGE_OPENCV4_LIB_OBJDETECT
|
|||||||
Include opencv_objdetect (object detection) module into the
|
Include opencv_objdetect (object detection) module into the
|
||||||
OpenCV build.
|
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_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
|
config BR2_PACKAGE_OPENCV4_LIB_PHOTO
|
||||||
bool "photo"
|
bool "photo"
|
||||||
@@ -207,9 +208,10 @@ config BR2_PACKAGE_OPENCV4_LIB_STITCHING
|
|||||||
Include opencv_stitching (images stitching) module into the
|
Include opencv_stitching (images stitching) module into the
|
||||||
OpenCV build.
|
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_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
|
config BR2_PACKAGE_OPENCV4_LIB_SUPERRES
|
||||||
bool "superres"
|
bool "superres"
|
||||||
@@ -332,6 +334,10 @@ config BR2_PACKAGE_OPENCV4_WITH_PROTOBUF
|
|||||||
help
|
help
|
||||||
Use shared protobuf from the target system.
|
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
|
config BR2_PACKAGE_OPENCV4_WITH_TBB
|
||||||
bool "tbb support"
|
bool "tbb support"
|
||||||
depends on !BR2_TOOLCHAIN_USES_UCLIBC # tbb
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC # tbb
|
||||||
|
|||||||
Reference in New Issue
Block a user