Re: [PATCH] powerpc: Kconfig: disable CONFIG_COMPAT for clang < 12

2021-06-06 Thread Michael Ellerman
On Tue, 18 May 2021 13:58:57 -0700, Nick Desaulniers wrote: > Until clang-12, clang would attempt to assemble 32b powerpc assembler in > 64b emulation mode when using a 64b target triple with -m32, leading to > errors during the build of the compat VDSO. Simply disable all of > CONFIG_COMPAT;

[PATCH] powerpc: Kconfig: disable CONFIG_COMPAT for clang < 12

2021-05-18 Thread Nick Desaulniers
Until clang-12, clang would attempt to assemble 32b powerpc assembler in 64b emulation mode when using a 64b target triple with -m32, leading to errors during the build of the compat VDSO. Simply disable all of CONFIG_COMPAT; users should upgrade to the latest release of clang for proper support.

Re: [PATCH] powerpc: Kconfig: disable CONFIG_COMPAT for clang < 12

2021-05-18 Thread Nathan Chancellor
On 5/18/2021 1:58 PM, Nick Desaulniers wrote: Until clang-12, clang would attempt to assemble 32b powerpc assembler in 64b emulation mode when using a 64b target triple with -m32, leading to errors during the build of the compat VDSO. Simply disable all of CONFIG_COMPAT; users should upgrade to