|
@@ -2,8 +2,22 @@ config BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS
|
|
bool
|
|
bool
|
|
default y if BR2_HOSTARCH = "x86_64"
|
|
default y if BR2_HOSTARCH = "x86_64"
|
|
|
|
|
|
|
|
+# Taken from make/autoconf/platform.m4
|
|
|
|
+config BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS
|
|
|
|
+ bool
|
|
|
|
+ default y if BR2_aarch64
|
|
|
|
+ default y if BR2_arm
|
|
|
|
+ default y if BR2_i386 || BR2_x86_64
|
|
|
|
+ default y if BR2_m68k
|
|
|
|
+ default y if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
|
|
|
|
+ default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
|
|
|
|
+ default y if BR2_sh
|
|
|
|
+ default y if BR2_sparc || BR2_sparc64
|
|
|
|
+
|
|
config BR2_PACKAGE_OPENJDK
|
|
config BR2_PACKAGE_OPENJDK
|
|
bool "openjdk"
|
|
bool "openjdk"
|
|
|
|
+ depends on BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS
|
|
|
|
+ depends on BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS
|
|
depends on !BR2_SOFT_FLOAT
|
|
depends on !BR2_SOFT_FLOAT
|
|
depends on !BR2_STATIC_LIBS # glibc
|
|
depends on !BR2_STATIC_LIBS # glibc
|
|
depends on BR2_INSTALL_LIBSTDCPP # cups
|
|
depends on BR2_INSTALL_LIBSTDCPP # cups
|
|
@@ -59,14 +73,20 @@ config BR2_PACKAGE_OPENJDK_JVM_VARIANT_ZERO
|
|
endif
|
|
endif
|
|
|
|
|
|
comment "openjdk needs X.Org"
|
|
comment "openjdk needs X.Org"
|
|
|
|
+ depends on BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS
|
|
|
|
+ depends on BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_PACKAGE_XORG7
|
|
depends on !BR2_PACKAGE_XORG7
|
|
|
|
|
|
comment "openjdk needs glibc, and a toolchain w/ wchar, dynamic library, threads, C++"
|
|
comment "openjdk needs glibc, and a toolchain w/ wchar, dynamic library, threads, C++"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_USE_MMU
|
|
|
|
+ depends on BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS
|
|
|
|
+ depends on BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC
|
|
|
|
|
|
comment "openjdk does not support soft float configurations"
|
|
comment "openjdk does not support soft float configurations"
|
|
|
|
+ depends on BR2_PACKAGE_OPENJDK_ARCH_SUPPORTS
|
|
|
|
+ depends on BR2_PACKAGE_HOST_OPENJDK_BIN_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_SOFT_FLOAT
|
|
depends on BR2_SOFT_FLOAT
|