Merge tag 'riscv-for-linus-5.13-mw0' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / tools / scripts / Makefile.include
1 # SPDX-License-Identifier: GPL-2.0
2 ifneq ($(O),)
3 ifeq ($(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)
8 ifeq ($(objtree),)
9         objtree := $(O)
10 endif
11 endif
12 endif
13
14 # check that the output directory actually exists
15 ifneq ($(OUTPUT),)
16 OUTDIR := $(shell cd $(OUTPUT) && pwd)
17 $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
18 endif
19
20 #
21 # Include saner warnings here, which can catch bugs:
22 #
23 EXTRA_WARNINGS := -Wbad-function-cast
24 EXTRA_WARNINGS += -Wdeclaration-after-statement
25 EXTRA_WARNINGS += -Wformat-security
26 EXTRA_WARNINGS += -Wformat-y2k
27 EXTRA_WARNINGS += -Winit-self
28 EXTRA_WARNINGS += -Wmissing-declarations
29 EXTRA_WARNINGS += -Wmissing-prototypes
30 EXTRA_WARNINGS += -Wnested-externs
31 EXTRA_WARNINGS += -Wno-system-headers
32 EXTRA_WARNINGS += -Wold-style-definition
33 EXTRA_WARNINGS += -Wpacked
34 EXTRA_WARNINGS += -Wredundant-decls
35 EXTRA_WARNINGS += -Wstrict-prototypes
36 EXTRA_WARNINGS += -Wswitch-default
37 EXTRA_WARNINGS += -Wswitch-enum
38 EXTRA_WARNINGS += -Wundef
39 EXTRA_WARNINGS += -Wwrite-strings
40 EXTRA_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.
47 define allow-override
48   $(if $(or $(findstring environment,$(origin $(1))),\
49             $(findstring command line,$(origin $(1)))),,\
50     $(eval $(1) = $(2)))
51 endef
52
53 ifneq ($(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)
59 else
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)
66 endif
67
68 CC_NO_CLANG := $(shell $(CC) -dM -E -x c /dev/null | grep -Fq "__clang__"; echo $$?)
69
70 ifneq ($(LLVM),)
71 HOSTAR  ?= llvm-ar
72 HOSTCC  ?= clang
73 HOSTLD  ?= ld.lld
74 else
75 HOSTAR  ?= ar
76 HOSTCC  ?= gcc
77 HOSTLD  ?= ld
78 endif
79
80 # Some tools require Clang, LLC and/or LLVM utils
81 CLANG           ?= clang
82 LLC             ?= llc
83 LLVM_CONFIG     ?= llvm-config
84 LLVM_OBJCOPY    ?= llvm-objcopy
85 LLVM_STRIP      ?= llvm-strip
86
87 ifeq ($(CC_NO_CLANG), 1)
88 EXTRA_WARNINGS += -Wstrict-aliasing=3
89 endif
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
102 ifneq ($(filter 3.%,$(MAKE_VERSION)),)  # make-3
103 EXTRA_WARNINGS += -fno-strict-aliasing
104 EXTRA_WARNINGS += -Wno-shadow
105 else
106 EXTRA_WARNINGS += -Wshadow
107 endif
108
109 ifneq ($(findstring $(MAKEFLAGS), w),w)
110 PRINT_DIR = --no-print-directory
111 else
112 NO_SUBDIR = :
113 endif
114
115 ifneq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
116   silent=1
117 endif
118
119 #
120 # Define a callable command for descending to a new directory
121 #
122 # Call by doing: $(call descend,directory[,target])
123 #
124 descend = \
125         +mkdir -p $(OUTPUT)$(1) && \
126         $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
127
128 QUIET_SUBDIR0  = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
129 QUIET_SUBDIR1  =
130
131 ifneq ($(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
157 endif
158
159 pound := \#