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

Commit eb0d5bee authored by Jordan Crouse's avatar Jordan Crouse
Browse files

kbuild: Disable the gcc-wrapper with an environment variable



Sometimes we don't want to call the gcc-wrapper for various reasons, so
allow build scripts to set a special environment variable to skip it.

Change-Id: Ic0dedbadd3567812ed0216e7b30d8677ca14ba37
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 77a29a8c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -427,9 +427,13 @@ PYTHON3 = python3
CHECK		= sparse
BASH		= bash

ifndef DISABLE_WRAPPER
# Use the wrapper for the compiler.  This wrapper scans for new
# warnings and causes the build to stop upon encountering them
CC		= $(srctree)/scripts/gcc-wrapper.py $(REAL_CC)
else
CC		= $(REAL_CC)
endif

CHECKFLAGS     := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
		  -Wbitwise -Wno-return-void -Wno-unknown-attribute $(CF)