1# SPDX-License-Identifier: GPL-2.0
2ifneq ($(O),)
3ifeq ($(origin O), command line)
4	dummy := $(if $(shell cd $(PWD); test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
5	ABSOLUTE_O := $(shell cd $(PWD); cd $(O) ; pwd)
6	OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
7	COMMAND_O := O=$(ABSOLUTE_O)
8ifeq ($(objtree),)
9	objtree := $(O)
10endif
11endif
12endif
13
14# check that the output directory actually exists
15ifneq ($(OUTPUT),)
16OUTDIR := $(shell cd $(OUTPUT) && pwd)
17$(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
18endif
19
20#
21# Include saner warnings here, which can catch bugs:
22#
23EXTRA_WARNINGS := -Wbad-function-cast
24EXTRA_WARNINGS += -Wdeclaration-after-statement
25EXTRA_WARNINGS += -Wformat-security
26EXTRA_WARNINGS += -Wformat-y2k
27EXTRA_WARNINGS += -Winit-self
28EXTRA_WARNINGS += -Wmissing-declarations
29EXTRA_WARNINGS += -Wmissing-prototypes
30EXTRA_WARNINGS += -Wnested-externs
31EXTRA_WARNINGS += -Wno-system-headers
32EXTRA_WARNINGS += -Wold-style-definition
33EXTRA_WARNINGS += -Wpacked
34EXTRA_WARNINGS += -Wredundant-decls
35EXTRA_WARNINGS += -Wstrict-prototypes
36EXTRA_WARNINGS += -Wswitch-default
37EXTRA_WARNINGS += -Wswitch-enum
38EXTRA_WARNINGS += -Wundef
39EXTRA_WARNINGS += -Wwrite-strings
40EXTRA_WARNINGS += -Wformat
41
42# Makefiles suck: This macro sets a default value of $(2) for the
43# variable named by $(1), unless the variable has been set by
44# environment or command line. This is necessary for CC and AR
45# because make sets default values, so the simpler ?= approach
46# won't work as expected.
47define allow-override
48  $(if $(or $(findstring environment,$(origin $(1))),\
49            $(findstring command line,$(origin $(1)))),,\
50    $(eval $(1) = $(2)))
51endef
52
53ifneq ($(LLVM),)
54$(call allow-override,CC,clang)
55$(call allow-override,AR,llvm-ar)
56$(call allow-override,LD,ld.lld)
57$(call allow-override,CXX,clang++)
58$(call allow-override,STRIP,llvm-strip)
59else
60# Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix.
61$(call allow-override,CC,$(CROSS_COMPILE)gcc)
62$(call allow-override,AR,$(CROSS_COMPILE)ar)
63$(call allow-override,LD,$(CROSS_COMPILE)ld)
64$(call allow-override,CXX,$(CROSS_COMPILE)g++)
65$(call allow-override,STRIP,$(CROSS_COMPILE)strip)
66endif
67
68CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
69
70ifneq ($(LLVM),)
71HOSTAR  ?= llvm-ar
72HOSTCC  ?= clang
73HOSTLD  ?= ld.lld
74else
75HOSTAR  ?= ar
76HOSTCC  ?= gcc
77HOSTLD  ?= ld
78endif
79
80# Some tools require Clang, LLC and/or LLVM utils
81CLANG		?= clang
82LLC		?= llc
83LLVM_CONFIG	?= llvm-config
84LLVM_OBJCOPY	?= llvm-objcopy
85LLVM_STRIP	?= llvm-strip
86
87ifeq ($(CC_NO_CLANG), 1)
88EXTRA_WARNINGS += -Wstrict-aliasing=3
89endif
90
91# Hack to avoid type-punned warnings on old systems such as RHEL5:
92# We should be changing CFLAGS and checking gcc version, but this
93# will do for now and keep the above -Wstrict-aliasing=3 in place
94# in newer systems.
95# Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
96#
97# See https://lore.kernel.org/lkml/9a8748490611281710g78402fbeh8ff7fcc162dbcbca@mail.gmail.com/
98# and https://gcc.gnu.org/gcc-4.8/changes.html,
99# that takes into account Linus's comments (search for Wshadow) for the reasoning about
100# -Wshadow not being interesting before gcc 4.8.
101
102ifneq ($(filter 3.%,$(MAKE_VERSION)),)  # make-3
103EXTRA_WARNINGS += -fno-strict-aliasing
104EXTRA_WARNINGS += -Wno-shadow
105else
106EXTRA_WARNINGS += -Wshadow
107endif
108
109ifneq ($(findstring $(MAKEFLAGS), w),w)
110PRINT_DIR = --no-print-directory
111else
112NO_SUBDIR = :
113endif
114
115ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
116  silent=1
117endif
118
119#
120# Define a callable command for descending to a new directory
121#
122# Call by doing: $(call descend,directory[,target])
123#
124descend = \
125	+mkdir -p $(OUTPUT)$(1) && \
126	$(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
127
128QUIET_SUBDIR0  = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
129QUIET_SUBDIR1  =
130
131ifneq ($(silent),1)
132  ifneq ($(V),1)
133	QUIET_CC       = @echo '  CC       '$@;
134	QUIET_CC_FPIC  = @echo '  CC FPIC  '$@;
135	QUIET_CLANG    = @echo '  CLANG    '$@;
136	QUIET_AR       = @echo '  AR       '$@;
137	QUIET_LINK     = @echo '  LINK     '$@;
138	QUIET_MKDIR    = @echo '  MKDIR    '$@;
139	QUIET_GEN      = @echo '  GEN      '$@;
140	QUIET_SUBDIR0  = +@subdir=
141	QUIET_SUBDIR1  = ;$(NO_SUBDIR) \
142			  echo '  SUBDIR   '$$subdir; \
143			 $(MAKE) $(PRINT_DIR) -C $$subdir
144	QUIET_FLEX     = @echo '  FLEX     '$@;
145	QUIET_BISON    = @echo '  BISON    '$@;
146	QUIET_GENSKEL  = @echo '  GEN-SKEL '$@;
147
148	descend = \
149		+@echo	       '  DESCEND  '$(1); \
150		mkdir -p $(OUTPUT)$(1) && \
151		$(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
152
153	QUIET_CLEAN    = @printf '  CLEAN    %s\n' $1;
154	QUIET_INSTALL  = @printf '  INSTALL  %s\n' $1;
155	QUIET_UNINST   = @printf '  UNINST   %s\n' $1;
156  endif
157endif
158
159pound := \#
160