blob: b0be5f40a3f11bfaa194d21a696b7bf63bff3a93 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Borislav Petkov9e4a6642013-02-20 16:32:29 +01002ifneq ($(O),)
David Howellsbf351822012-11-05 21:02:08 +00003ifeq ($(origin O), command line)
Masami Hiramatsube409202020-03-07 03:32:58 +09004 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)
David Howellsbf351822012-11-05 21:02:08 +00006 OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
Steven Rostedtc8831222012-08-13 10:23:02 -04007 COMMAND_O := O=$(ABSOLUTE_O)
David Howellsbf351822012-11-05 21:02:08 +00008ifeq ($(objtree),)
9 objtree := $(O)
10endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +020011endif
Borislav Petkov9e4a6642013-02-20 16:32:29 +010012endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +020013
Borislav Petkov98d89bf2012-04-11 18:36:14 +020014# check that the output directory actually exists
Borislav Petkov9e4a6642013-02-20 16:32:29 +010015ifneq ($(OUTPUT),)
Bjørn Forsman16f82592017-11-05 10:44:16 +010016OUTDIR := $(shell cd $(OUTPUT) && pwd)
Borislav Petkov98d89bf2012-04-11 18:36:14 +020017$(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
18endif
19
20#
21# Include saner warnings here, which can catch bugs:
22#
Borislav Petkovd8caf3e2012-04-11 18:36:15 +020023EXTRA_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
Borislav Petkovd8caf3e2012-04-11 18:36:15 +020035EXTRA_WARNINGS += -Wstrict-prototypes
36EXTRA_WARNINGS += -Wswitch-default
37EXTRA_WARNINGS += -Wswitch-enum
38EXTRA_WARNINGS += -Wundef
39EXTRA_WARNINGS += -Wwrite-strings
40EXTRA_WARNINGS += -Wformat
Yury Norovd1d1a2cd2021-05-06 18:02:42 -070041EXTRA_WARNINGS += -Wno-type-limits
Borislav Petkov98d89bf2012-04-11 18:36:14 +020042
Martin Kelly7ed1c192018-02-21 14:45:12 -080043# Makefiles suck: This macro sets a default value of $(2) for the
44# variable named by $(1), unless the variable has been set by
45# environment or command line. This is necessary for CC and AR
46# because make sets default values, so the simpler ?= approach
47# won't work as expected.
48define allow-override
49 $(if $(or $(findstring environment,$(origin $(1))),\
50 $(findstring command line,$(origin $(1)))),,\
51 $(eval $(1) = $(2)))
52endef
53
Yonghong Songf62700c2021-04-13 08:34:19 -070054ifneq ($(LLVM),)
55$(call allow-override,CC,clang)
56$(call allow-override,AR,llvm-ar)
57$(call allow-override,LD,ld.lld)
58$(call allow-override,CXX,clang++)
59$(call allow-override,STRIP,llvm-strip)
60else
Martin Kelly7ed1c192018-02-21 14:45:12 -080061# Allow setting various cross-compile vars or setting CROSS_COMPILE as a prefix.
62$(call allow-override,CC,$(CROSS_COMPILE)gcc)
63$(call allow-override,AR,$(CROSS_COMPILE)ar)
64$(call allow-override,LD,$(CROSS_COMPILE)ld)
65$(call allow-override,CXX,$(CROSS_COMPILE)g++)
66$(call allow-override,STRIP,$(CROSS_COMPILE)strip)
Yonghong Songf62700c2021-04-13 08:34:19 -070067endif
68
69CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
Martin Kelly7ed1c192018-02-21 14:45:12 -080070
Jean-Philippe Bruckerc8a950d2020-11-10 17:43:05 +010071ifneq ($(LLVM),)
72HOSTAR ?= llvm-ar
73HOSTCC ?= clang
74HOSTLD ?= ld.lld
75else
76HOSTAR ?= ar
77HOSTCC ?= gcc
78HOSTLD ?= ld
79endif
80
Sedat Dilek211a7412021-01-28 02:50:58 +010081# Some tools require Clang, LLC and/or LLVM utils
82CLANG ?= clang
83LLC ?= llc
84LLVM_CONFIG ?= llvm-config
85LLVM_OBJCOPY ?= llvm-objcopy
86LLVM_STRIP ?= llvm-strip
87
David Carrillo-Cisneros38660582017-08-27 00:54:40 -070088ifeq ($(CC_NO_CLANG), 1)
Arnaldo Carvalho de Melo093b75e2017-02-14 10:34:35 -030089EXTRA_WARNINGS += -Wstrict-aliasing=3
Jean-Philippe Bruckercebdb732021-12-16 16:38:38 +000090
91else ifneq ($(CROSS_COMPILE),)
92CLANG_CROSS_FLAGS := --target=$(notdir $(CROSS_COMPILE:%-=%))
93GCC_TOOLCHAIN_DIR := $(dir $(shell which $(CROSS_COMPILE)gcc))
94ifneq ($(GCC_TOOLCHAIN_DIR),)
95CLANG_CROSS_FLAGS += --prefix=$(GCC_TOOLCHAIN_DIR)$(notdir $(CROSS_COMPILE))
96CLANG_CROSS_FLAGS += --sysroot=$(shell $(CROSS_COMPILE)gcc -print-sysroot)
97CLANG_CROSS_FLAGS += --gcc-toolchain=$(realpath $(GCC_TOOLCHAIN_DIR)/..)
98endif # GCC_TOOLCHAIN_DIR
99CFLAGS += $(CLANG_CROSS_FLAGS)
100AFLAGS += $(CLANG_CROSS_FLAGS)
101endif # CROSS_COMPILE
Arnaldo Carvalho de Melo093b75e2017-02-14 10:34:35 -0300102
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -0300103# Hack to avoid type-punned warnings on old systems such as RHEL5:
104# We should be changing CFLAGS and checking gcc version, but this
105# will do for now and keep the above -Wstrict-aliasing=3 in place
106# in newer systems.
107# Needed for the __raw_cmpxchg in tools/arch/x86/include/asm/cmpxchg.h
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -0300108#
Kees Cookc9491aa2021-02-10 15:40:05 -0800109# See https://lore.kernel.org/lkml/9a8748490611281710g78402fbeh8ff7fcc162dbcbca@mail.gmail.com/
110# and https://gcc.gnu.org/gcc-4.8/changes.html,
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -0300111# that takes into account Linus's comments (search for Wshadow) for the reasoning about
112# -Wshadow not being interesting before gcc 4.8.
113
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -0300114ifneq ($(filter 3.%,$(MAKE_VERSION)),) # make-3
115EXTRA_WARNINGS += -fno-strict-aliasing
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -0300116EXTRA_WARNINGS += -Wno-shadow
117else
118EXTRA_WARNINGS += -Wshadow
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -0300119endif
120
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200121ifneq ($(findstring $(MAKEFLAGS), w),w)
122PRINT_DIR = --no-print-directory
123else
124NO_SUBDIR = :
125endif
126
Masahiro Yamada6f0fa582017-05-19 20:42:30 +0900127ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Josh Poimboeufe572d082017-01-18 22:16:55 -0600128 silent=1
129endif
Josh Poimboeufe572d082017-01-18 22:16:55 -0600130
David Howellsca9dfc62012-11-05 15:15:24 +0000131#
132# Define a callable command for descending to a new directory
133#
134# Call by doing: $(call descend,directory[,target])
135#
136descend = \
David Howellsbf351822012-11-05 21:02:08 +0000137 +mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300138 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
David Howellsca9dfc62012-11-05 15:15:24 +0000139
David Howellsbf351822012-11-05 21:02:08 +0000140QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200141QUIET_SUBDIR1 =
142
Josh Poimboeufe572d082017-01-18 22:16:55 -0600143ifneq ($(silent),1)
Ingo Molnar65fb0992013-10-09 11:49:27 +0200144 ifneq ($(V),1)
Kees Cookc6de37d2021-04-21 11:58:48 -0700145 QUIET_CC = @echo ' CC '$@;
146 QUIET_CC_FPIC = @echo ' CC FPIC '$@;
147 QUIET_CLANG = @echo ' CLANG '$@;
148 QUIET_AR = @echo ' AR '$@;
149 QUIET_LINK = @echo ' LINK '$@;
150 QUIET_MKDIR = @echo ' MKDIR '$@;
151 QUIET_GEN = @echo ' GEN '$@;
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200152 QUIET_SUBDIR0 = +@subdir=
Ingo Molnar65fb0992013-10-09 11:49:27 +0200153 QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
Kees Cookc6de37d2021-04-21 11:58:48 -0700154 echo ' SUBDIR '$$subdir; \
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200155 $(MAKE) $(PRINT_DIR) -C $$subdir
Kees Cookc6de37d2021-04-21 11:58:48 -0700156 QUIET_FLEX = @echo ' FLEX '$@;
157 QUIET_BISON = @echo ' BISON '$@;
158 QUIET_GENSKEL = @echo ' GENSKEL '$@;
David Howellsbf351822012-11-05 21:02:08 +0000159
160 descend = \
Kees Cookc6de37d2021-04-21 11:58:48 -0700161 +@echo ' DESCEND '$(1); \
David Howellsbf351822012-11-05 21:02:08 +0000162 mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300163 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
Jiri Olsab7248de2013-12-19 14:42:00 +0100164
Kees Cookc6de37d2021-04-21 11:58:48 -0700165 QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
166 QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
167 QUIET_UNINST = @printf ' UNINST %s\n' $1;
Ingo Molnar65fb0992013-10-09 11:49:27 +0200168 endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200169endif
Rasmus Villemoes9564a8c2018-04-08 23:35:28 +0200170
171pound := \#