blob: 91130648d8e66a147804dce8dc03cf842caacb6d [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
Borislav Petkov98d89bf2012-04-11 18:36:14 +020041
Martin Kelly7ed1c192018-02-21 14:45:12 -080042# 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
Yonghong Songf62700c2021-04-13 08:34:19 -070053ifneq ($(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
Martin Kelly7ed1c192018-02-21 14:45:12 -080060# 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)
Yonghong Songf62700c2021-04-13 08:34:19 -070066endif
67
68CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
Martin Kelly7ed1c192018-02-21 14:45:12 -080069
Jean-Philippe Bruckerc8a950d2020-11-10 17:43:05 +010070ifneq ($(LLVM),)
71HOSTAR ?= llvm-ar
72HOSTCC ?= clang
73HOSTLD ?= ld.lld
74else
75HOSTAR ?= ar
76HOSTCC ?= gcc
77HOSTLD ?= ld
78endif
79
Sedat Dilek211a7412021-01-28 02:50:58 +010080# 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
David Carrillo-Cisneros38660582017-08-27 00:54:40 -070087ifeq ($(CC_NO_CLANG), 1)
Arnaldo Carvalho de Melo093b75e2017-02-14 10:34:35 -030088EXTRA_WARNINGS += -Wstrict-aliasing=3
89endif
90
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -030091# 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
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -030096#
97# See https://lkml.org/lkml/2006/11/28/253 and https://gcc.gnu.org/gcc-4.8/changes.html,
98# that takes into account Linus's comments (search for Wshadow) for the reasoning about
99# -Wshadow not being interesting before gcc 4.8.
100
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -0300101ifneq ($(filter 3.%,$(MAKE_VERSION)),) # make-3
102EXTRA_WARNINGS += -fno-strict-aliasing
Arnaldo Carvalho de Melo39e73172019-07-19 15:34:30 -0300103EXTRA_WARNINGS += -Wno-shadow
104else
105EXTRA_WARNINGS += -Wshadow
Arnaldo Carvalho de Melo3337e682017-02-22 16:54:53 -0300106endif
107
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200108ifneq ($(findstring $(MAKEFLAGS), w),w)
109PRINT_DIR = --no-print-directory
110else
111NO_SUBDIR = :
112endif
113
Masahiro Yamada6f0fa582017-05-19 20:42:30 +0900114ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Josh Poimboeufe572d082017-01-18 22:16:55 -0600115 silent=1
116endif
Josh Poimboeufe572d082017-01-18 22:16:55 -0600117
David Howellsca9dfc62012-11-05 15:15:24 +0000118#
119# Define a callable command for descending to a new directory
120#
121# Call by doing: $(call descend,directory[,target])
122#
123descend = \
David Howellsbf351822012-11-05 21:02:08 +0000124 +mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300125 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
David Howellsca9dfc62012-11-05 15:15:24 +0000126
David Howellsbf351822012-11-05 21:02:08 +0000127QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200128QUIET_SUBDIR1 =
129
Josh Poimboeufe572d082017-01-18 22:16:55 -0600130ifneq ($(silent),1)
Ingo Molnar65fb0992013-10-09 11:49:27 +0200131 ifneq ($(V),1)
132 QUIET_CC = @echo ' CC '$@;
Jiri Olsabdebbac2013-12-19 14:42:03 +0100133 QUIET_CC_FPIC = @echo ' CC FPIC '$@;
Song Liu47c09d62020-03-09 10:32:15 -0700134 QUIET_CLANG = @echo ' CLANG '$@;
Ingo Molnar65fb0992013-10-09 11:49:27 +0200135 QUIET_AR = @echo ' AR '$@;
136 QUIET_LINK = @echo ' LINK '$@;
137 QUIET_MKDIR = @echo ' MKDIR '$@;
138 QUIET_GEN = @echo ' GEN '$@;
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200139 QUIET_SUBDIR0 = +@subdir=
Ingo Molnar65fb0992013-10-09 11:49:27 +0200140 QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
141 echo ' SUBDIR '$$subdir; \
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200142 $(MAKE) $(PRINT_DIR) -C $$subdir
Ingo Molnar65fb0992013-10-09 11:49:27 +0200143 QUIET_FLEX = @echo ' FLEX '$@;
144 QUIET_BISON = @echo ' BISON '$@;
Song Liufbcdaa12020-12-29 13:42:13 -0800145 QUIET_GENSKEL = @echo ' GEN-SKEL '$@;
David Howellsbf351822012-11-05 21:02:08 +0000146
147 descend = \
Ingo Molnar65fb0992013-10-09 11:49:27 +0200148 +@echo ' DESCEND '$(1); \
David Howellsbf351822012-11-05 21:02:08 +0000149 mkdir -p $(OUTPUT)$(1) && \
David Howells2b73f652012-11-13 14:14:38 -0300150 $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
Jiri Olsab7248de2013-12-19 14:42:00 +0100151
152 QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
153 QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
Quentin Monnetd3244242017-12-07 15:00:18 -0800154 QUIET_UNINST = @printf ' UNINST %s\n' $1;
Ingo Molnar65fb0992013-10-09 11:49:27 +0200155 endif
Borislav Petkov98d89bf2012-04-11 18:36:14 +0200156endif
Rasmus Villemoes9564a8c2018-04-08 23:35:28 +0200157
158pound := \#