diff options
| author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-09-23 22:38:49 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2018-10-01 14:52:32 +0200 |
| commit | cf2b12cbfba473fe1e4a2d4714b7a13ee19b64f0 (patch) | |
| tree | 4e7c519818117727971bc1528670a3f668123493 /arch | |
| parent | 059d655f5cfa321ae3e0847599c80acb238d39c1 (diff) | |
| download | buildroot-cf2b12cbfba473fe1e4a2d4714b7a13ee19b64f0.tar.gz buildroot-cf2b12cbfba473fe1e4a2d4714b7a13ee19b64f0.zip | |
arch: drop BR2_GCC_TARGET_CPU_REVISION option
In commit 325bb37942f8d3826dab9dc6e88b25234e67a2cf, support for the
Blackfin architecture was removed. This was our only use of
BR2_GCC_TARGET_CPU_REVISION, and since this config option somewhat
complicates the calculation of the --with-cpu/-mcpu option values,
let's drop it.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/Config.in | 3 | ||||
| -rw-r--r-- | arch/arch.mk | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/arch/Config.in b/arch/Config.in index 8bd57fe1cc..f50760a0cf 100644 --- a/arch/Config.in +++ b/arch/Config.in @@ -317,9 +317,6 @@ config BR2_GCC_TARGET_FP32_MODE config BR2_GCC_TARGET_CPU string -config BR2_GCC_TARGET_CPU_REVISION - string - # The value of this option will be passed as --with-fpu=<value> when # building gcc (internal backend) or -mfpu=<value> in the toolchain # wrapper (external toolchain) diff --git a/arch/arch.mk b/arch/arch.mk index 6c15270903..289c5a1125 100644 --- a/arch/arch.mk +++ b/arch/arch.mk @@ -14,7 +14,6 @@ GCC_TARGET_ABI := $(call qstrip,$(BR2_GCC_TARGET_ABI)) GCC_TARGET_NAN := $(call qstrip,$(BR2_GCC_TARGET_NAN)) GCC_TARGET_FP32_MODE := $(call qstrip,$(BR2_GCC_TARGET_FP32_MODE)) GCC_TARGET_CPU := $(call qstrip,$(BR2_GCC_TARGET_CPU)) -GCC_TARGET_CPU_REVISION := $(call qstrip,$(BR2_GCC_TARGET_CPU_REVISION)) GCC_TARGET_FPU := $(call qstrip,$(BR2_GCC_TARGET_FPU)) GCC_TARGET_FLOAT_ABI := $(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI)) GCC_TARGET_MODE := $(call qstrip,$(BR2_GCC_TARGET_MODE)) |

