You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gu...@apache.org on 2022/04/30 04:20:16 UTC

[incubator-nuttx] branch master updated: arch/avr: Remvoe the error message when toolchain can't find

This is an automated email from the ASF dual-hosted git repository.

gustavonihei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a95be5086 arch/avr: Remvoe the error message when toolchain can't find
2a95be5086 is described below

commit 2a95be50868e1977c67a88cb40dc1f5e0354f8f8
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat Apr 30 00:53:05 2022 +0800

    arch/avr: Remvoe the error message when toolchain can't find
    
    to avoid blocking the basic ci check
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 arch/avr/src/avr/Toolchain.defs        | 2 --
 arch/sparc/src/sparc_v8/Toolchain.defs | 2 --
 2 files changed, 4 deletions(-)

diff --git a/arch/avr/src/avr/Toolchain.defs b/arch/avr/src/avr/Toolchain.defs
index c6508b6844..d5bff2a09e 100644
--- a/arch/avr/src/avr/Toolchain.defs
+++ b/arch/avr/src/avr/Toolchain.defs
@@ -80,8 +80,6 @@ else ifeq ($(CONFIG_ARCH_CHIP_AT90USB1287),y)
 else ifeq ($(CONFIG_ARCH_CHIP_ATMEGA2560),y)
   ARCHCPUFLAGS += -mmcu=atmega2560
   LDFLAGS += -mavr6
-else
-  $(error "No valid CONFIG_ARCH_CHIP_ set in the configuration")
 endif
 
 ifeq ($(CONFIG_DEBUG_CUSTOMOPT),y)
diff --git a/arch/sparc/src/sparc_v8/Toolchain.defs b/arch/sparc/src/sparc_v8/Toolchain.defs
index 98c7e943b1..96c02e1d68 100644
--- a/arch/sparc/src/sparc_v8/Toolchain.defs
+++ b/arch/sparc/src/sparc_v8/Toolchain.defs
@@ -52,8 +52,6 @@ ifeq ($(CONFIG_ARCH_CHIP_BM3803),y)
   ARCHCPUFLAGS += -mcpu=leon
 else ifeq ($(CONFIG_ARCH_CHIP_BM3823),y)
   ARCHCPUFLAGS += -mcpu=leon -mflat
-else
-  $(error "No valid CONFIG_ARCH_CHIP_ set in the configuration")
 endif
 
 ifeq ($(CONFIG_DEBUG_CUSTOMOPT),y)