Skip to content
Snippets Groups Projects
Commit 4ab64933 authored by Kim Phillips's avatar Kim Phillips Committed by Tom Rini
Browse files

add check infrastructure, default sparse


Add support for running source code checkers on u-boot source, e.g.,
using sparse to aid with typechecking.  This comes in especially
handy as SoC vendors mix and match cores and devices with different
endianness, thus here we add CHECK_ENDIAN to the otherwise linux
kernel default CHECKFLAGS.

Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent e46a4350
No related branches found
No related tags found
No related merge requests found
...@@ -92,6 +92,24 @@ BUILD_DIR := $(O) ...@@ -92,6 +92,24 @@ BUILD_DIR := $(O)
endif endif
endif endif
# Call a source code checker (by default, "sparse") as part of the
# C compilation.
#
# Use 'make C=1' to enable checking of re-compiled files.
#
# See the linux kernel file "Documentation/sparse.txt" for more details,
# including where to get the "sparse" utility.
ifdef C
ifeq ("$(origin C)", "command line")
CHECKSRC := $(C)
endif
endif
ifndef CHECKSRC
CHECKSRC = 0
endif
export CHECKSRC
ifneq ($(BUILD_DIR),) ifneq ($(BUILD_DIR),)
saved-output := $(BUILD_DIR) saved-output := $(BUILD_DIR)
......
...@@ -149,6 +149,7 @@ OBJCOPY = $(CROSS_COMPILE)objcopy ...@@ -149,6 +149,7 @@ OBJCOPY = $(CROSS_COMPILE)objcopy
OBJDUMP = $(CROSS_COMPILE)objdump OBJDUMP = $(CROSS_COMPILE)objdump
RANLIB = $(CROSS_COMPILE)RANLIB RANLIB = $(CROSS_COMPILE)RANLIB
DTC = dtc DTC = dtc
CHECK = sparse
######################################################################### #########################################################################
...@@ -275,6 +276,10 @@ ifneq ($(CONFIG_SPL_TEXT_BASE),) ...@@ -275,6 +276,10 @@ ifneq ($(CONFIG_SPL_TEXT_BASE),)
LDFLAGS_u-boot-spl += -Ttext $(CONFIG_SPL_TEXT_BASE) LDFLAGS_u-boot-spl += -Ttext $(CONFIG_SPL_TEXT_BASE)
endif endif
# Linus' kernel sanity checking tool
CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
-Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
# Location of a usable BFD library, where we define "usable" as # Location of a usable BFD library, where we define "usable" as
# "built for ${HOST}, supports ${TARGET}". Sensible values are # "built for ${HOST}, supports ${TARGET}". Sensible values are
# - When cross-compiling: the root of the cross-environment # - When cross-compiling: the root of the cross-environment
...@@ -322,6 +327,9 @@ $(obj)%.s: %.S ...@@ -322,6 +327,9 @@ $(obj)%.s: %.S
$(obj)%.o: %.S $(obj)%.o: %.S
$(CC) $(ALL_AFLAGS) -o $@ $< -c $(CC) $(ALL_AFLAGS) -o $@ $< -c
$(obj)%.o: %.c $(obj)%.o: %.c
ifneq ($(CHECKSRC),0)
$(CHECK) $(CHECKFLAGS) $(ALL_CFLAGS) $<
endif
$(CC) $(ALL_CFLAGS) -o $@ $< -c $(CC) $(ALL_CFLAGS) -o $@ $< -c
$(obj)%.i: %.c $(obj)%.i: %.c
$(CPP) $(ALL_CFLAGS) -o $@ $< -c $(CPP) $(ALL_CFLAGS) -o $@ $< -c
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment