qt5: update to support riscv arch

Signed-off-by: Andy Hu <andy.hu@starfivetech.com>
This commit is contained in:
Andy Hu
2023-04-12 14:50:08 +08:00
parent d2bdf6ee04
commit a304ca521c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ config BR2_PACKAGE_QT5_JSCORE_AVAILABLE
bool bool
default y default y
# Javascript engine is only available on certain architectures # Javascript engine is only available on certain architectures
depends on BR2_arm || BR2_aarch64 || BR2_i386 || BR2_x86_64 || BR2_mipsel depends on BR2_arm || BR2_aarch64 || BR2_i386 || BR2_x86_64 || BR2_mipsel || BR2_riscv
# ARM needs BLX, so v5t+ # ARM needs BLX, so v5t+
depends on !BR2_ARM_CPU_ARMV4 depends on !BR2_ARM_CPU_ARMV4
+1 -1
View File
@@ -2,7 +2,7 @@ config BR2_PACKAGE_QT5WEBENGINE_ARCH_SUPPORTS
bool bool
default y if BR2_aarch64 || BR2_arm || \ default y if BR2_aarch64 || BR2_arm || \
BR2_i386 || BR2_x86_64 || \ BR2_i386 || BR2_x86_64 || \
BR2_mips || BR2_mips64 BR2_mips || BR2_mips64 || BR2_riscv
# -m32 flag is used for 32bit builds and host tools have # -m32 flag is used for 32bit builds and host tools have
# limited architecture support # limited architecture support
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"