From 343b36ffc79f9506586b5263b5d840dce0d801e0 Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Wed, 27 Feb 2019 10:21:03 +0000 Subject: [PATCH 1/1] toolchain: Use GCC 8.3.0 by default for ARC Use GCC 8.3.0 by default for ARC targets Includes a fix by Evgeniy Didin which fixes GCC version selection if DEVEL isn't set Signed-off-by: Daniel Engberg --- toolchain/gcc/Config.in | 2 +- toolchain/gcc/Config.version | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index d85e8cd402..28054f7692 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -2,7 +2,7 @@ choice prompt "GCC compiler Version" if TOOLCHAINOPTS - default GCC_USE_VERSION_7_1_ARC if arc + default GCC_USE_VERSION_8 if arc default GCC_USE_VERSION_7 help Select the version of gcc you wish to use. diff --git a/toolchain/gcc/Config.version b/toolchain/gcc/Config.version index ff574fffcd..e2ef20552d 100644 --- a/toolchain/gcc/Config.version +++ b/toolchain/gcc/Config.version @@ -8,6 +8,7 @@ config GCC_VERSION_5 config GCC_VERSION_8 default y if GCC_USE_VERSION_8 + default y if arc bool config GCC_USE_EMBEDDED_PATH_REMAP -- 2.30.2