Message ID | 1507575192-12814-1-git-send-email-adhemerval.zanella@linaro.org |
---|---|
State | New |
Headers | show |
Series | Enable ifunc attribute by default for ARM GNU/Linux | expand |
On Mon, 9 Oct 2017, Adhemerval Zanella wrote: > *-*-linux*) > case ${target} in > - aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-*) > + aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-* | arm*-*) I think the cases here are meant to be in alphabetical order. -- Joseph S. Myers joseph@codesourcery.com
On 09/10/2017 19:20, Joseph Myers wrote: > On Mon, 9 Oct 2017, Adhemerval Zanella wrote: > >> *-*-linux*) >> case ${target} in >> - aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-*) >> + aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-* | arm*-*) > > I think the cases here are meant to be in alphabetical order. > Ack, I will change. Is it ok to commit with the change?
On Tue, 10 Oct 2017, Adhemerval Zanella wrote: > On 09/10/2017 19:20, Joseph Myers wrote: > > On Mon, 9 Oct 2017, Adhemerval Zanella wrote: > > > >> *-*-linux*) > >> case ${target} in > >> - aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-*) > >> + aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-* | arm*-*) > > > > I think the cases here are meant to be in alphabetical order. > > > > Ack, I will change. Is it ok to commit with the change? OK with that change in the absence of ARM architecture maintainer objections within 24 hours. -- Joseph S. Myers joseph@codesourcery.com
diff --git a/gcc/config.gcc b/gcc/config.gcc index 91a55e8..26aa8f6 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3104,7 +3104,7 @@ case ${target} in ;; *-*-linux*) case ${target} in - aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-*) + aarch64*-* | i[34567]86-* | powerpc*-* | s390*-* | sparc*-* | x86_64-* | arm*-*) default_gnu_indirect_function=yes ;; esac