sparse: add as a new package selectable from the config
This change does multiple things, all related to enable sparse usage as a static analysis tool selectable from the OpenWrt configuration: *add a KERNEL_SPARSE option in the config to add sparse to the kernel build (through the C=1 option usage) *add sparse as a new host tools. It will get selected automatically when the above option will be enabled Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com> SVN-Revision: 40490
This commit is contained in:
parent
72803e0e27
commit
76133009c9
4 changed files with 31 additions and 0 deletions
|
@ -144,6 +144,10 @@ config USE_RFKILL
|
||||||
bool "Enable rfkill support"
|
bool "Enable rfkill support"
|
||||||
default RFKILL_SUPPORT
|
default RFKILL_SUPPORT
|
||||||
|
|
||||||
|
config USE_SPARSE
|
||||||
|
bool "Enable sparse check during kernel build"
|
||||||
|
default n
|
||||||
|
|
||||||
#
|
#
|
||||||
# CGROUP support symbols
|
# CGROUP support symbols
|
||||||
#
|
#
|
||||||
|
|
|
@ -24,6 +24,10 @@ ifneq (,$(KERNEL_CC))
|
||||||
KERNEL_MAKEOPTS += CC="$(KERNEL_CC)"
|
KERNEL_MAKEOPTS += CC="$(KERNEL_CC)"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef CONFIG_USE_SPARSE
|
||||||
|
KERNEL_MAKEOPTS += C=1 CHECK=$(STAGING_DIR_HOST)/bin/sparse
|
||||||
|
endif
|
||||||
|
|
||||||
export HOST_EXTRACFLAGS=-I$(STAGING_DIR_HOST)/include
|
export HOST_EXTRACFLAGS=-I$(STAGING_DIR_HOST)/include
|
||||||
|
|
||||||
# defined in quilt.mk
|
# defined in quilt.mk
|
||||||
|
|
|
@ -38,6 +38,7 @@ tools-$(CONFIG_TARGET_ar71xx) += lzma-old squashfs
|
||||||
tools-y += lzma squashfs4
|
tools-y += lzma squashfs4
|
||||||
tools-$(BUILD_B43_TOOLS) += b43-tools
|
tools-$(BUILD_B43_TOOLS) += b43-tools
|
||||||
tools-$(BUILD_PPL_CLOOG) += ppl cloog
|
tools-$(BUILD_PPL_CLOOG) += ppl cloog
|
||||||
|
tools-$(CONFIG_USE_SPARSE) += sparse
|
||||||
|
|
||||||
# builddir dependencies
|
# builddir dependencies
|
||||||
$(curdir)/bison/compile := $(curdir)/flex/install
|
$(curdir)/bison/compile := $(curdir)/flex/install
|
||||||
|
|
22
tools/sparse/Makefile
Normal file
22
tools/sparse/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 Qualcomm-Atheros Inc.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=sparse
|
||||||
|
PKG_VERSION:=0.5.0
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||||
|
PKG_SOURCE_URL:=@KERNEL/software/devel/sparse/dist/
|
||||||
|
PKG_MD5SUM:=68bc834c57836251fbee55a7707bab39
|
||||||
|
|
||||||
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
|
define Host/Install
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/sparse $(STAGING_DIR_HOST)/bin
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call HostBuild))
|
Loading…
Reference in a new issue