|
@@ -1,6 +1,11 @@
|
|
|
|
+config BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS
|
|
|
|
+ bool
|
|
|
|
+ default y if BR2_arm && BR2_ARM_CPU_HAS_NEON
|
|
|
|
+ default y if BR2_aarch64
|
|
|
|
+
|
|
config BR2_PACKAGE_BAYER2RGB_NEON
|
|
config BR2_PACKAGE_BAYER2RGB_NEON
|
|
bool "bayer2rgb-neon"
|
|
bool "bayer2rgb-neon"
|
|
- depends on (BR2_arm && BR2_ARM_CPU_HAS_NEON) || BR2_aarch64
|
|
|
|
|
|
+ depends on BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
@@ -12,6 +17,6 @@ config BR2_PACKAGE_BAYER2RGB_NEON
|
|
https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb
|
|
https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb
|
|
|
|
|
|
comment "bayer2rgb-neon needs a toolchain w/ C++, dynamic library, gcc >= 4.9"
|
|
comment "bayer2rgb-neon needs a toolchain w/ C++, dynamic library, gcc >= 4.9"
|
|
- depends on BR2_arm && BR2_ARM_CPU_HAS_NEON
|
|
|
|
|
|
+ depends on BR2_PACKAGE_BAYER2RGB_NEON_ARCH_SUPPORTS
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|