]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
powerpc: Fix fatal warnings flag for LLVM's integrated assembler
authorNathan Chancellor <nathan@kernel.org>
Fri, 5 Apr 2024 19:31:22 +0000 (12:31 -0700)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 8 Apr 2024 06:06:41 +0000 (16:06 +1000)
When building with LLVM_IAS=1, there is an error because
'-fatal-warnings' is not recognized as a valid flag:

  clang: error: unsupported argument '-fatal-warnings' to option '-Wa,'

Use the double hyphen version of the flag, '--fatal-warnings', which
works with both the GNU assembler and LLVM's integrated assembler.

Fixes: 608d4a5ca563 ("powerpc: Error on assembly warnings")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Justin Stitt <justinstitt@google.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240405-ppc-fix-wa-fatal-warnings-clang-v1-1-bdcd969f2ef0@kernel.org
arch/powerpc/Kbuild

index da862e9558bc976746887057b8b8e5582a432993..571f260b08423caf138b46dda5d250ae02fc4130 100644 (file)
@@ -1,6 +1,6 @@
 # SPDX-License-Identifier: GPL-2.0
-subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror -Wa,-fatal-warnings
-subdir-asflags-$(CONFIG_PPC_WERROR) := -Wa,-fatal-warnings
+subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror -Wa,--fatal-warnings
+subdir-asflags-$(CONFIG_PPC_WERROR) := -Wa,--fatal-warnings
 
 obj-y += kernel/
 obj-y += mm/