]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/conf/kern.pre.mk
AUTO_OBJ: Fix 'old style' kernel builds using wrong .OBJDIR.
[FreeBSD/FreeBSD.git] / sys / conf / kern.pre.mk
1 # $FreeBSD$
2
3 # Part of a unified Makefile for building kernels.  This part contains all
4 # of the definitions that need to be before %BEFORE_DEPEND.
5
6 # Allow user to configure things that only effect src tree builds.
7 # Note: This is duplicated from src.sys.mk to ensure that we include
8 # /etc/src.conf when building the kernel. Kernels can be built without
9 # the rest of /usr/src, but they still always process SRCCONF even though
10 # the normal mechanisms to prevent that (compiling out of tree) won't
11 # work. To ensure they do work, we have to duplicate thee few lines here.
12 SRCCONF?=       /etc/src.conf
13 .if (exists(${SRCCONF}) || ${SRCCONF} != "/etc/src.conf") && !target(_srcconf_included_)
14 .include "${SRCCONF}"
15 _srcconf_included_:
16 .endif
17
18 .include <bsd.own.mk>
19 .include <bsd.compiler.mk>
20 .include "kern.opts.mk"
21
22 # The kernel build always occurs in the object directory which is .CURDIR.
23 .if ${.MAKE.MODE:Unormal:Mmeta}
24 .MAKE.MODE+=    curdirOk=yes
25 .endif
26
27 # The kernel build always expects .OBJDIR=.CURDIR.
28 .OBJDIR: ${.CURDIR}
29
30 .if defined(NO_OBJWALK) || ${MK_AUTO_OBJ} == "yes"
31 NO_OBJWALK=             t
32 NO_MODULES_OBJ= t
33 .endif
34 .if !defined(NO_OBJWALK)
35 _obj=           obj
36 .endif
37
38 # Can be overridden by makeoptions or /etc/make.conf
39 KERNEL_KO?=     kernel
40 KERNEL?=        kernel
41 KODIR?=         /boot/${KERNEL}
42 LDSCRIPT_NAME?= ldscript.$M
43 LDSCRIPT?=      $S/conf/${LDSCRIPT_NAME}
44
45 M=              ${MACHINE}
46
47 AWK?=           awk
48 CP?=            cp
49 LINT?=          lint
50 NM?=            nm
51 OBJCOPY?=       objcopy
52 SIZE?=          size
53
54 .if defined(DEBUG)
55 _MINUS_O=       -O
56 CTFFLAGS+=      -g
57 .else
58 .if ${MACHINE_CPUARCH} == "powerpc"
59 _MINUS_O=       -O      # gcc miscompiles some code at -O2
60 .else
61 _MINUS_O=       -O2
62 .endif
63 .endif
64 .if ${MACHINE_CPUARCH} == "amd64"
65 .if ${COMPILER_TYPE} == "clang"
66 COPTFLAGS?=-O2 -pipe
67 .else
68 COPTFLAGS?=-O2 -frename-registers -pipe
69 .endif
70 .else
71 COPTFLAGS?=${_MINUS_O} -pipe
72 .endif
73 .if !empty(COPTFLAGS:M-O[23s]) && empty(COPTFLAGS:M-fno-strict-aliasing)
74 COPTFLAGS+= -fno-strict-aliasing
75 .endif
76 .if !defined(NO_CPU_COPTFLAGS)
77 COPTFLAGS+= ${_CPUCFLAGS}
78 .endif
79 NOSTDINC= -nostdinc
80
81 INCLUDES= ${NOSTDINC} ${INCLMAGIC} -I. -I$S
82
83 CFLAGS= ${COPTFLAGS} ${DEBUG}
84 CFLAGS+= ${INCLUDES} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h
85 CFLAGS_PARAM_INLINE_UNIT_GROWTH?=100
86 CFLAGS_PARAM_LARGE_FUNCTION_GROWTH?=1000
87 .if ${MACHINE_CPUARCH} == "mips"
88 CFLAGS_ARCH_PARAMS?=--param max-inline-insns-single=1000 -DMACHINE_ARCH='"${MACHINE_ARCH}"'
89 .endif
90 CFLAGS.gcc+= -fno-common -fms-extensions -finline-limit=${INLINE_LIMIT}
91 CFLAGS.gcc+= --param inline-unit-growth=${CFLAGS_PARAM_INLINE_UNIT_GROWTH}
92 CFLAGS.gcc+= --param large-function-growth=${CFLAGS_PARAM_LARGE_FUNCTION_GROWTH}
93 .if defined(CFLAGS_ARCH_PARAMS)
94 CFLAGS.gcc+=${CFLAGS_ARCH_PARAMS}
95 .endif
96 WERROR?= -Werror
97
98 # XXX LOCORE means "don't declare C stuff" not "for locore.s".
99 ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS} ${ASM_CFLAGS.${.IMPSRC:T}} 
100
101 .if defined(PROFLEVEL) && ${PROFLEVEL} >= 1
102 CFLAGS+=        -DGPROF
103 CFLAGS.gcc+=    -falign-functions=16
104 .if ${PROFLEVEL} >= 2
105 CFLAGS+=        -DGPROF4 -DGUPROF
106 PROF=           -pg
107 .if ${COMPILER_TYPE} == "gcc"
108 PROF+=          -mprofiler-epilogue
109 .endif
110 .else
111 PROF=           -pg
112 .endif
113 .endif
114 DEFINED_PROF=   ${PROF}
115
116 # Put configuration-specific C flags last (except for ${PROF}) so that they
117 # can override the others.
118 CFLAGS+=        ${CONF_CFLAGS}
119
120 .if defined(LINKER_FEATURES) && ${LINKER_FEATURES:Mbuild-id}
121 LDFLAGS+=       -Wl,--build-id=sha1
122 .endif
123
124 # Optional linting. This can be overridden in /etc/make.conf.
125 LINTFLAGS=      ${LINTOBJKERNFLAGS}
126
127 NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
128 NORMAL_S= ${CC:N${CCACHE_BIN}} -c ${ASM_CFLAGS} ${WERROR} ${.IMPSRC}
129 PROFILE_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
130 NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
131
132 NORMAL_M= ${AWK} -f $S/tools/makeobjops.awk ${.IMPSRC} -c ; \
133           ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.PREFIX}.c
134
135 NORMAL_FW= uudecode -o ${.TARGET} ${.ALLSRC}
136 NORMAL_FWO= ${LD} -b binary --no-warn-mismatch -d -warn-common -r \
137         -m ${LD_EMULATION} -o ${.TARGET} ${.ALLSRC:M*.fw}
138
139 # Common for dtrace / zfs
140 CDDL_CFLAGS=    -DFREEBSD_NAMECACHE -nostdinc -I$S/cddl/compat/opensolaris -I$S/cddl/contrib/opensolaris/uts/common -I$S -I$S/cddl/contrib/opensolaris/common ${CFLAGS} -Wno-unknown-pragmas -Wno-missing-prototypes -Wno-undef -Wno-strict-prototypes -Wno-cast-qual -Wno-parentheses -Wno-redundant-decls -Wno-missing-braces -Wno-uninitialized -Wno-unused -Wno-inline -Wno-switch -Wno-pointer-arith -Wno-unknown-pragmas
141 CDDL_CFLAGS+=   -include $S/cddl/compat/opensolaris/sys/debug_compat.h
142 CDDL_C=         ${CC} -c ${CDDL_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
143
144 # Special flags for managing the compat compiles for ZFS
145 ZFS_CFLAGS=     -DBUILDING_ZFS -I$S/cddl/contrib/opensolaris/uts/common/fs/zfs
146 ZFS_CFLAGS+=    -I$S/cddl/contrib/opensolaris/uts/common/fs/zfs/lua
147 ZFS_CFLAGS+=    -I$S/cddl/contrib/opensolaris/uts/common/zmod
148 ZFS_CFLAGS+=    -I$S/cddl/contrib/opensolaris/common/zfs
149 ZFS_CFLAGS+=    ${CDDL_CFLAGS}
150 ZFS_ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${ZFS_CFLAGS}
151 ZFS_C=          ${CC} -c ${ZFS_CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
152 ZFS_S=          ${CC} -c ${ZFS_ASM_CFLAGS} ${WERROR} ${.IMPSRC}
153
154 # Special flags for managing the compat compiles for DTrace
155 DTRACE_CFLAGS=  -DBUILDING_DTRACE ${CDDL_CFLAGS} -I$S/cddl/dev/dtrace -I$S/cddl/dev/dtrace/${MACHINE_CPUARCH}
156 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
157 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/uts/intel -I$S/cddl/dev/dtrace/x86
158 .endif
159 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/common/util -I$S -DDIS_MEM -DSMP
160 DTRACE_ASM_CFLAGS=      -x assembler-with-cpp -DLOCORE ${DTRACE_CFLAGS}
161 DTRACE_C=       ${CC} -c ${DTRACE_CFLAGS}       ${WERROR} ${PROF} ${.IMPSRC}
162 DTRACE_S=       ${CC} -c ${DTRACE_ASM_CFLAGS}   ${WERROR} ${.IMPSRC}
163
164 # Special flags for managing the compat compiles for DTrace/FBT
165 FBT_CFLAGS=     -DBUILDING_DTRACE -nostdinc -I$S/cddl/dev/fbt/${MACHINE_CPUARCH} -I$S/cddl/dev/fbt -I$S/cddl/compat/opensolaris -I$S/cddl/contrib/opensolaris/uts/common -I$S ${CDDL_CFLAGS}
166 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
167 FBT_CFLAGS+=    -I$S/cddl/dev/fbt/x86
168 .endif
169 FBT_C=          ${CC} -c ${FBT_CFLAGS}          ${WERROR} ${PROF} ${.IMPSRC}
170
171 .if ${MK_CTF} != "no"
172 NORMAL_CTFCONVERT=      ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
173 .elif ${MAKE_VERSION} >= 5201111300
174 NORMAL_CTFCONVERT=
175 .else
176 NORMAL_CTFCONVERT=      @:
177 .endif
178
179 NORMAL_LINT=    ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC}
180
181 # Linux Kernel Programming Interface C-flags
182 LINUXKPI_INCLUDES=      -I$S/compat/linuxkpi/common/include
183 LINUXKPI_C=             ${NORMAL_C} ${LINUXKPI_INCLUDES}
184
185 # Infiniband C flags.  Correct include paths and omit errors that linux
186 # does not honor.
187 OFEDINCLUDES=   -I$S/ofed/include ${LINUXKPI_INCLUDES}
188 OFEDNOERR=      -Wno-cast-qual -Wno-pointer-arith
189 OFEDCFLAGS=     ${CFLAGS:N-I*} ${OFEDINCLUDES} ${CFLAGS:M-I*} ${OFEDNOERR}
190 OFED_C_NOIMP=   ${CC} -c -o ${.TARGET} ${OFEDCFLAGS} ${WERROR} ${PROF}
191 OFED_C=         ${OFED_C_NOIMP} ${.IMPSRC}
192
193 GEN_CFILES= $S/$M/$M/genassym.c ${MFILES:T:S/.m$/.c/}
194 SYSTEM_CFILES= config.c env.c hints.c vnode_if.c
195 SYSTEM_DEP= Makefile ${SYSTEM_OBJS}
196 SYSTEM_OBJS= locore.o ${MDOBJS} ${OBJS}
197 SYSTEM_OBJS+= ${SYSTEM_CFILES:.c=.o}
198 SYSTEM_OBJS+= hack.pico
199
200 MD_ROOT_SIZE_CONFIGURED!=       grep MD_ROOT_SIZE opt_md.h || true ; echo
201 .if ${MFS_IMAGE:Uno} != "no"
202 .if empty(MD_ROOT_SIZE_CONFIGURED)
203 SYSTEM_OBJS+= embedfs_${MFS_IMAGE:T:R}.o
204 .endif
205 .endif
206 SYSTEM_LD= @${LD} -m ${LD_EMULATION} -Bdynamic -T ${LDSCRIPT} ${_LDFLAGS} \
207         --no-warn-mismatch --warn-common --export-dynamic \
208         --dynamic-linker /red/herring \
209         -o ${.TARGET} -X ${SYSTEM_OBJS} vers.o
210 SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symbol gcc2_compiled. ${.TARGET} ; \
211         ${SIZE} ${.TARGET} ; chmod 755 ${.TARGET}
212 SYSTEM_DEP+= ${LDSCRIPT}
213
214 # Calculate path for .m files early, if needed.
215 .if !defined(NO_MODULES) && !defined(__MPATH) && !make(install)
216 __MPATH!=find ${S:tA}/ -name \*_if.m
217 .endif
218
219 # MKMODULESENV is set here so that port makefiles can augment
220 # them.
221
222 MKMODULESENV+=  MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR}
223 MKMODULESENV+=  MACHINE_CPUARCH=${MACHINE_CPUARCH}
224 MKMODULESENV+=  MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH}
225 MKMODULESENV+=  MODULES_EXTRA="${MODULES_EXTRA}" WITHOUT_MODULES="${WITHOUT_MODULES}"
226 MKMODULESENV+=  ARCH_FLAGS="${ARCH_FLAGS}"
227 .if (${KERN_IDENT} == LINT)
228 MKMODULESENV+=  ALL_MODULES=LINT
229 .endif
230 .if defined(MODULES_OVERRIDE)
231 MKMODULESENV+=  MODULES_OVERRIDE="${MODULES_OVERRIDE}"
232 .endif
233 .if defined(DEBUG)
234 MKMODULESENV+=  DEBUG_FLAGS="${DEBUG}"
235 .endif
236 .if !defined(NO_MODULES)
237 MKMODULESENV+=  __MPATH="${__MPATH}"
238 .endif
239
240 # Architecture and output format arguments for objdump to convert image to
241 # object file
242
243 .if ${MFS_IMAGE:Uno} != "no"
244 .if empty(MD_ROOT_SIZE_CONFIGURED)
245 .if !defined(EMBEDFS_FORMAT.${MACHINE_ARCH})
246 EMBEDFS_FORMAT.${MACHINE_ARCH}!= awk -F'"' '/OUTPUT_FORMAT/ {print $$2}' ${LDSCRIPT}
247 .if empty(EMBEDFS_FORMAT.${MACHINE_ARCH})
248 .undef EMBEDFS_FORMAT.${MACHINE_ARCH}
249 .endif
250 .endif
251
252 .if !defined(EMBEDFS_ARCH.${MACHINE_ARCH})
253 EMBEDFS_ARCH.${MACHINE_ARCH}!= sed -n '/OUTPUT_ARCH/s/.*(\(.*\)).*/\1/p' ${LDSCRIPT}
254 .if empty(EMBEDFS_ARCH.${MACHINE_ARCH})
255 .undef EMBEDFS_ARCH.${MACHINE_ARCH}
256 .endif
257 .endif
258
259 EMBEDFS_FORMAT.arm?=            elf32-littlearm
260 EMBEDFS_FORMAT.armv6?=          elf32-littlearm
261 EMBEDFS_FORMAT.armv7?=          elf32-littlearm
262 EMBEDFS_FORMAT.aarch64?=        elf64-littleaarch64
263 EMBEDFS_FORMAT.mips?=           elf32-tradbigmips
264 EMBEDFS_FORMAT.mipsel?=         elf32-tradlittlemips
265 EMBEDFS_FORMAT.mips64?=         elf64-tradbigmips
266 EMBEDFS_FORMAT.mips64el?=       elf64-tradlittlemips
267 EMBEDFS_FORMAT.riscv?=          elf64-littleriscv
268 .endif
269 .endif
270
271 # Detect kernel config options that force stack frames to be turned on.
272 DDB_ENABLED!=   grep DDB opt_ddb.h || true ; echo
273 DTR_ENABLED!=   grep KDTRACE_FRAME opt_kdtrace.h || true ; echo
274 HWPMC_ENABLED!= grep HWPMC opt_hwpmc_hooks.h || true ; echo