2021-09-14 06:14:59

by Abdul Haleem

[permalink] [raw]
Subject: [5.15-rc1][PPC][bisected 6d2ef226] mainline build breaks at ./include/linux/compiler_attributes.h:62:5: warning: "__has_attribute"

Greeting's

Today's mainline kernel fails to compile on my powerpc box with below errors

././include/linux/compiler_attributes.h:62:5: warning: "__has_attribute"
is not defined, evaluates to 0 [-Wundef]
 #if __has_attribute(__assume_aligned__)
     ^~~~~~~~~~~~~~~
././include/linux/compiler_attributes.h:62:20: error: missing binary
operator before token "("
 #if __has_attribute(__assume_aligned__)
                    ^
././include/linux/compiler_attributes.h:88:5: warning: "__has_attribute"
is not defined, evaluates to 0 [-Wundef]
 #if __has_attribute(__copy__)
     ^~~~~~~~~~~~~~~
././include/linux/compiler_attributes.h:88:20: error: missing binary
operator before token "("
 #if __has_attribute(__copy__)

Kernel builds fine when below patch is reverted

commit 6d2ef22 : compiler_attributes.h: drop __has_attribute() support
for gcc4

--
Regard's

Abdul Haleem
IBM Linux Technology Center


Attachments:
ZZ-VM-config.txt (143.70 kB)

2021-09-14 06:24:44

by Stephen Rothwell

[permalink] [raw]
Subject: Re: [5.15-rc1][PPC][bisected 6d2ef226] mainline build breaks at ./include/linux/compiler_attributes.h:62:5: warning: "__has_attribute"

Hi Abdul,

On Tue, 14 Sep 2021 11:39:44 +0530 Abdul Haleem <[email protected]> wrote:
>
> Today's mainline kernel fails to compile on my powerpc box with below errors
>
> ././include/linux/compiler_attributes.h:62:5: warning: "__has_attribute" is not defined, evaluates to 0 [-Wundef]
>  #if __has_attribute(__assume_aligned__)
>      ^~~~~~~~~~~~~~~
> ././include/linux/compiler_attributes.h:62:20: error: missing binary operator before token "("
>  #if __has_attribute(__assume_aligned__)
>                     ^
> ././include/linux/compiler_attributes.h:88:5: warning: "__has_attribute" is not defined, evaluates to 0 [-Wundef]
>  #if __has_attribute(__copy__)
>      ^~~~~~~~~~~~~~~
> ././include/linux/compiler_attributes.h:88:20: error: missing binary operator before token "("
>  #if __has_attribute(__copy__)
>
> Kernel builds fine when below patch is reverted
>
> commit 6d2ef22 : compiler_attributes.h: drop __has_attribute() support for gcc4

Thanks for your report.

This is known and being addressed.

--
Cheers,
Stephen Rothwell


Attachments:
(No filename) (499.00 B)
OpenPGP digital signature

2021-09-14 15:08:08

by Nick Desaulniers

[permalink] [raw]
Subject: Re: [5.15-rc1][PPC][bisected 6d2ef226] mainline build breaks at ./include/linux/compiler_attributes.h:62:5: warning: "__has_attribute"

On Mon, Sep 13, 2021 at 11:22 PM Stephen Rothwell <[email protected]> wrote:
>
> Hi Abdul,
>
> On Tue, 14 Sep 2021 11:39:44 +0530 Abdul Haleem <[email protected]> wrote:
> >
> > Today's mainline kernel fails to compile on my powerpc box with below errors
> >
> > ././include/linux/compiler_attributes.h:62:5: warning: "__has_attribute" is not defined, evaluates to 0 [-Wundef]
> > #if __has_attribute(__assume_aligned__)
> > ^~~~~~~~~~~~~~~
> > ././include/linux/compiler_attributes.h:62:20: error: missing binary operator before token "("
> > #if __has_attribute(__assume_aligned__)
> > ^
> > ././include/linux/compiler_attributes.h:88:5: warning: "__has_attribute" is not defined, evaluates to 0 [-Wundef]
> > #if __has_attribute(__copy__)
> > ^~~~~~~~~~~~~~~
> > ././include/linux/compiler_attributes.h:88:20: error: missing binary operator before token "("
> > #if __has_attribute(__copy__)
> >
> > Kernel builds fine when below patch is reverted
> >
> > commit 6d2ef22 : compiler_attributes.h: drop __has_attribute() support for gcc4
>
> Thanks for your report.
>
> This is known and being addressed.

Thanks for the report. Support for GCC 4.X has been dropped.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=76ae847497bc5207c479de5e2ac487270008b19b
--
Thanks,
~Nick Desaulniers