diff options
author | Jean Delvare <jdelvare@suse.de> | 2012-10-02 10:42:36 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-10-03 03:03:24 -0400 |
commit | b1e0d8b70fa31821ebca3965f2ef8619d7c5e316 (patch) | |
tree | 4df17a3e10de030701ccf0868da1a94c1063b07d /arch/mips/Makefile | |
parent | fe04ddf7c2910362f3817c8156e41cbd6c0ee35d (diff) |
kbuild: Fix gcc -x syntax
The correct syntax for gcc -x is "gcc -x assembler", not
"gcc -xassembler". Even though the latter happens to work, the former
is what is documented in the manual page and thus what gcc wrappers
such as icecream do expect.
This isn't a cosmetic change. The missing space prevents icecream from
recognizing compilation tasks it can't handle, leading to silent kernel
miscompilations.
Besides me, credits go to Michael Matz and Dirk Mueller for
investigating the miscompilation issue and tracking it down to this
incorrect -x parameter syntax.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Acked-by: Ingo Molnar <mingo@kernel.org>
Cc: stable@vger.kernel.org
Cc: Bernhard Walle <bernhard@bwalle.de>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 764e37a9dbb3..654b1ad39f05 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -225,7 +225,7 @@ KBUILD_CPPFLAGS += -DDATAOFFSET=$(if $(dataoffset-y),$(dataoffset-y),0) | |||
225 | LDFLAGS += -m $(ld-emul) | 225 | LDFLAGS += -m $(ld-emul) |
226 | 226 | ||
227 | ifdef CONFIG_MIPS | 227 | ifdef CONFIG_MIPS |
228 | CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -xc /dev/null | \ | 228 | CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ |
229 | egrep -vw '__GNUC_(|MINOR_|PATCHLEVEL_)_' | \ | 229 | egrep -vw '__GNUC_(|MINOR_|PATCHLEVEL_)_' | \ |
230 | sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/") | 230 | sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/") |
231 | ifdef CONFIG_64BIT | 231 | ifdef CONFIG_64BIT |