Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3744d988 authored by Luc Van Oostenryck's avatar Luc Van Oostenryck Committed by Helge Deller
Browse files

parisc: Pass endianness info to sparse



parisc is big-endian only but sparse assumes the same endianness as the
building machine.
This is problematic for code which expect __BYTE_ORDER__ being correctly
predefined by the compiler which sparse can then pre-process differently
from what gcc would.

Fix this by letting sparse know about the architecture endianness.

To: James Bottomley <jejb@parisc-linux.org>
To: Helge Deller <deller@gmx.de>
CC: linux-parisc@vger.kernel.org
Signed-off-by: default avatarLuc Van Oostenryck <luc.vanoostenryck@gmail.com>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent bf7b4c1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -22,7 +22,7 @@ KBUILD_IMAGE := vmlinuz
KBUILD_DEFCONFIG := default_defconfig
KBUILD_DEFCONFIG := default_defconfig


NM		= sh $(srctree)/arch/parisc/nm
NM		= sh $(srctree)/arch/parisc/nm
CHECKFLAGS	+= -D__hppa__=1
CHECKFLAGS	+= -D__hppa__=1 -mbig-endian
LIBGCC		= $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
LIBGCC		= $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
export LIBGCC
export LIBGCC