From 6b1b71e667ce08c34fbf3af39da24d55c0c60304 Mon Sep 17 00:00:00 2001 From: LEAN-ESX Date: Mon, 28 Oct 2019 02:46:48 -0700 Subject: [PATCH] toolchain: ARM: Fix toolchain compilation for gcc 8.x --- include/target.mk | 20 -------------------- package/lean/qt5/Makefile | 2 +- toolchain/gcc/common.mk | 8 ++++++-- 3 files changed, 7 insertions(+), 23 deletions(-) diff --git a/include/target.mk b/include/target.mk index 2a7483826..22f81fefb 100644 --- a/include/target.mk +++ b/include/target.mk @@ -188,26 +188,6 @@ ifeq ($(DUMP),1) endif ifneq ($(findstring arm,$(ARCH)),) CPU_TYPE ?= xscale - CPU_CFLAGS_arm920t = -mcpu=arm920t - CPU_CFLAGS_arm926ej-s = -mcpu=arm926ej-s - CPU_CFLAGS_arm1136j-s = -mcpu=arm1136j-s - CPU_CFLAGS_arm1176jzf-s = -mcpu=arm1176jzf-s - CPU_CFLAGS_cortex-a5 = -mcpu=cortex-a5 - CPU_CFLAGS_cortex-a7 = -mcpu=cortex-a7 - CPU_CFLAGS_cortex-a8 = -mcpu=cortex-a8 - CPU_CFLAGS_cortex-a9 = -mcpu=cortex-a9 - CPU_CFLAGS_cortex-a15 = -mcpu=cortex-a15 - CPU_CFLAGS_cortex-a53 = -mcpu=cortex-a53 - CPU_CFLAGS_cortex-a72 = -mcpu=cortex-a72 - CPU_CFLAGS_fa526 = -mcpu=fa526 - CPU_CFLAGS_mpcore = -mcpu=mpcore - CPU_CFLAGS_xscale = -mcpu=xscale - ifeq ($(CONFIG_SOFT_FLOAT),) - CPU_CFLAGS_neon = -mfpu=neon - CPU_CFLAGS_vfp = -mfpu=vfp - CPU_CFLAGS_vfpv3 = -mfpu=vfpv3-d16 - CPU_CFLAGS_neon-vfpv4 = -mfpu=neon-vfpv4 - endif endif ifeq ($(ARCH),powerpc) CPU_CFLAGS_603e:=-mcpu=603e diff --git a/package/lean/qt5/Makefile b/package/lean/qt5/Makefile index 739bfb33f..734d26a5c 100644 --- a/package/lean/qt5/Makefile +++ b/package/lean/qt5/Makefile @@ -114,7 +114,7 @@ define Build/Configure -no-opengl \ -no-directfb \ -no-xcb \ - -openssl-runtime \ + -no-openssl \ -qt-zlib \ -qt-pcre \ -qt-freetype \ diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index b75fce57e..654599ca5 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -174,9 +174,13 @@ ifneq ($(GCC_ARCH),) GCC_CONFIGURE+= --with-arch=$(GCC_ARCH) endif -ifneq ($(CONFIG_SOFT_FLOAT),y) - ifeq ($(CONFIG_arm),y) +ifeq ($(CONFIG_arm),y) + GCC_CONFIGURE+= \ + --with-cpu=$(word 1, $(subst +," ,$(CONFIG_CPU_TYPE))) + + ifneq ($(CONFIG_SOFT_FLOAT),y) GCC_CONFIGURE+= \ + --with-fpu=$(word 2, $(subst +, ",$(CONFIG_CPU_TYPE))) \ --with-float=hard endif endif