Re: [PATCH 01/14] ARM: RiscPC needs older gcc version

From: Arnd Bergmann
Date: Wed Sep 29 2021 - 04:45:56 EST


On Tue, Sep 28, 2021 at 6:03 PM Arnd Bergmann <arnd@xxxxxxxx> wrote:
>
> On Tue, Sep 28, 2021 at 5:42 PM Arnd Bergmann <arnd@xxxxxxxxxx> wrote:
>
> > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> > index fc196421b2ce..12a0bd4b315d 100644
> > --- a/arch/arm/Kconfig
> > +++ b/arch/arm/Kconfig
> > @@ -431,7 +431,7 @@ config ARCH_PXA
> >
> > config ARCH_RPC
> > bool "RiscPC"
> > - depends on MMU
>
> This line was a botched rebase, it obviously has to stay here.
>
> > + depends on !CC_IS_CLANG || GCC_VERSION < 90100

This line is also wrong, it needs to be '&&', not '||'.

Arnd