Re: [PATCH 1/2] powerpc/64: Remove duplicated -mabi=elfv2 for little endian targets

2018-10-01 Thread Bin Meng
On Mon, Oct 1, 2018 at 4:59 PM Segher Boessenkool wrote: > > On Sat, Sep 29, 2018 at 11:25:19PM -0700, Bin Meng wrote: > > The -mabi=elfv2 is currently specified twice in the makefile. Remove > > the one that does not test compiler. > > This was > > ifdef CONFIG_PPC64 > cflags-$(CONFIG_CPU_BIG_END

Re: [PATCH 1/2] powerpc/64: Remove duplicated -mabi=elfv2 for little endian targets

2018-10-01 Thread Segher Boessenkool
On Sat, Sep 29, 2018 at 11:25:19PM -0700, Bin Meng wrote: > The -mabi=elfv2 is currently specified twice in the makefile. Remove > the one that does not test compiler. This was ifdef CONFIG_PPC64 cflags-$(CONFIG_CPU_BIG_ENDIAN) += $(call cc-option,-mabi=elfv1) cflags-$(CONFIG_CPU_BIG_ENDI

[PATCH 1/2] powerpc/64: Remove duplicated -mabi=elfv2 for little endian targets

2018-09-29 Thread Bin Meng
The -mabi=elfv2 is currently specified twice in the makefile. Remove the one that does not test compiler. Signed-off-by: Bin Meng --- arch/powerpc/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 11a1acb..16b0695 100644 --- a/arch/p