xref: /dragonfly/sys/conf/kern.pre.mk (revision eb0e7146)
1#
2# This Makefile covers the top part of the MI kernel build instructions
3#
4
5# Can be overridden by makeoptions or /etc/make.conf
6KERNEL?=	kernel
7
8# If a different binutils is installed in /usr/local it probably
9# won't recognize LDVER or use the default, creating an incompatibility
10# between buildkernel and nativekernel as well as between buildkernel and
11# manual make's inside /usr/obj/usr/src/sys/KERNEL_CONFIG.
12#
13# /usr/local/bin must be removed from the path.
14#
15RMLDPATH=/usr/local/bin
16PATH:=${PATH:C/${RMLDPATH}//g}
17.export PATH
18
19fubar:
20	echo ${PATH}
21
22# build this target if none is specified on the command line
23.MAIN:	all
24
25# Set the platform and machine architectures
26#
27P=	${MACHINE_PLATFORM}
28M=	${MACHINE_ARCH}
29
30SIZE?=		size
31OBJCOPY?=	objcopy
32
33COPTFLAGS?=-O2 -pipe
34#COPTFLAGS?=-O -pipe -flto -fno-fat-lto-objects
35#COPTFLAGS?=-O -fthread-jumps -fcse-follow-jumps -fcrossjumping -frerun-cse-after-loop -fno-guess-branch-probability --param min-crossjump-insns=1 -pipe
36#COPTFLAGS?=-O -fcrossjumping -pipe
37#COPTFLAGS?=-Os -fno-strict-aliasing -pipe
38#COPTFLAGS?=-O2 -fno-strict-aliasing -pipe
39.if !defined(NO_CPU_COPTFLAGS)
40COPTFLAGS+= ${_CPUCFLAGS}
41.endif
42# don't use -I- so we can use proper source-relative locality for local
43# includes.
44#
45# -I.  - this is to access the opt_*.h and use_*.h header files generated
46#	 in the kernel build directory.
47#
48# -Iinclude
49#	- this is used to access forwarding header files for
50#	  <machine/*.h> that exist in the cpu architecture but do not
51#	  exist in the platform (machine/) architecture.  This allows
52#	  the platform to trivially override the cpu header files.
53#
54INCLUDES= -nostdinc -I. -Iinclude -I$S
55# This hack is to allow kernel compiles to succeed on machines w/out srcdist
56.if exists($S/../include)
57INCLUDES+= -I$S/../include
58.else
59INCLUDES+= -I/usr/include
60.endif
61
62# This hack lets us use the Intel ACPICA code without spamming a new
63# include path into 100+ source files.
64.include "$S/conf/acpi.mk"
65INCLUDES+= -I${.OBJDIR} -I"$S/${OSACPI_MI_DIR}" -I"$S/${ACPICA_DIR}/include"
66
67# ... and the same for Atheros HAL
68INCLUDES+= -I$S/dev/netif/ath/ath_hal -I$S/contrib/dev/ath/ath_hal
69
70# Same thing for drm includes
71INCLUDES+= -I$S/dev/drm/include
72INCLUDES+= -I$S/dev/drm/include/drm
73INCLUDES+= -I$S/dev/drm/include/uapi
74
75COPTS=	${INCLUDES} ${IDENT} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h
76CFLAGS=	${COPTFLAGS} ${KCFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS}
77
78# XXX LOCORE means "don't declare C stuff" not "for locore.s".
79ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS:N-flto}
80
81# Put configuration-specific C flags last so that they
82# can override the others.
83CFLAGS+=	${CONF_CFLAGS}
84
85# XXX handle this explicitly, fw wrappers use implicit .c.o: rule (LINT64)
86.if defined(FASTER_DEPEND)
87CFLAGS+= -MD
88.endif
89
90NORMAL_C= ${CC} -c ${CFLAGS} ${.IMPSRC}
91NORMAL_C_C= ${CC} -c ${CFLAGS} ${.IMPSRC}
92NORMAL_S= ${CC} -c ${ASM_CFLAGS} ${.IMPSRC}
93
94NORMAL_M= awk -f $S/tools/makeobjops.awk -- -c $<; \
95	${CC} -c ${CFLAGS} ${.PREFIX}.c
96
97NORMAL_FW= uudecode -o ${.TARGET} ${.ALLSRC}
98NORMAL_FWO= ${LD} -b binary -d -warn-common -r -o ${.TARGET} ${.ALLSRC:M*.fw}
99
100.if !defined(NO_WERROR) && (${CCVER} == "gcc47" || ${CCVER} == "gcc80")
101WERROR=-Werror
102.endif
103
104GEN_CFILES= $S/platform/$P/$M/genassym.c
105SYSTEM_CFILES= ioconf.c config.c
106SYSTEM_SFILES= $S/platform/$P/$M/locore.s
107SYSTEM_DEP= Makefile ${SYSTEM_OBJS}
108SYSTEM_OBJS= locore.o ${OBJS} ioconf.o config.o hack.So
109SYSTEM_LD= @${CC} -nostdlib -ffreestanding -Wl,--hash-style=sysv \
110	-Wl,-Bdynamic -Wl,-T,$S/platform/$P/conf/ldscript.$M \
111	-Wl,--export-dynamic -Wl,--dynamic-linker,/red/herring \
112	-o ${.TARGET} -Wl,-X ${SYSTEM_OBJS} vers.o
113
114# In case of LTO provide all standard CFLAGS!
115.if ${CFLAGS:M-flto}
116SYSTEM_LD+= ${CFLAGS}
117## This one eats a lot of ram, may be needed to correctly link the kernel.
118## Default "balanced" might create kernel that "Fatal trap 12" on boot!!!
119#. if !${CFLAGS:M-flto-partition=*}
120#SYSTEM_LD+= -flto-partition=one -flto-report-wpa
121#. endif
122.endif
123
124# The max-page-size for gnu ld is 0x200000 on x86_64
125# For the gold linker, it is only 0x1000 on both x86_64
126# The penalty for changing the gold default for x86_64 is larger binaries
127# and shared libraries, and forcing them to use more address space than
128# required.  The only application that needs such a large page size is the
129# kernel itself, so leave the gold default alone and treat the kernel
130# page size as an exception.
131#
132.if ${P} == "pc64"
133SYSTEM_LD+= -Wl,-z,max-page-size=0x200000
134.endif
135
136SYSTEM_LD_TAIL= @${OBJCOPY} --strip-symbol gcc2_compiled. ${.TARGET} ; \
137	${SIZE} ${.TARGET} ; chmod 755 ${.TARGET}
138SYSTEM_DEP+= $S/platform/$P/conf/ldscript.$M
139
140# Normalize output files to make it absolutely crystal clear to
141# anyone examining the build directory.
142#
143.if defined(DEBUG)
144FULLKERNEL=	${KERNEL}.debug
145.if defined(INSTALLSTRIPPED)
146SELECTEDKERNEL= ${KERNEL}.stripped
147.else
148SELECTEDKERNEL= ${KERNEL}.debug
149.endif
150.else
151FULLKERNEL=	${KERNEL}.nodebug
152SELECTEDKERNEL= ${KERNEL}.stripped
153.endif
154
155
156MKMODULESENV=	MAKEOBJDIRPREFIX=${.OBJDIR} BUILDING_WITH_KERNEL=${.OBJDIR}
157.if defined(MODULES_OVERRIDE)
158MKMODULESENV+=	MODULES_OVERRIDE="${MODULES_OVERRIDE}"
159.endif
160.if defined(DEBUG)
161MKMODULESENV+=	DEBUG="${DEBUG}" DEBUG_FLAGS="${DEBUG}"
162.endif
163.if defined(INSTALLSTRIPPED) || defined(INSTALLSTRIPPEDMODULES)
164MKMODULESENV+=	INSTALLSTRIPPEDMODULES=1
165.endif
166MKMODULESENV+=  MACHINE_ARCH=${MACHINE_ARCH} MACHINE=${MACHINE} MACHINE_PLATFORM=${MACHINE_PLATFORM}
167
168