]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/defs.mk
MFV: r362513
[FreeBSD/FreeBSD.git] / stand / defs.mk
1 # $FreeBSD$
2
3 .if !defined(__BOOT_DEFS_MK__)
4 __BOOT_DEFS_MK__=${MFILE}
5
6 # We need to define all the MK_ options before including src.opts.mk
7 # because it includes bsd.own.mk which needs the right MK_ values,
8 # espeically MK_CTF.
9
10 MK_CTF=         no
11 MK_SSP=         no
12 MK_PROFILE=     no
13 MAN=
14 .if !defined(PIC)
15 NO_PIC=
16 INTERNALLIB=
17 .endif
18
19 .include <src.opts.mk>
20
21 WARNS?=         1
22
23 BOOTSRC=        ${SRCTOP}/stand
24 EFISRC=         ${BOOTSRC}/efi
25 EFIINC=         ${EFISRC}/include
26 EFIINCMD=       ${EFIINC}/${MACHINE}
27 FDTSRC=         ${BOOTSRC}/fdt
28 FICLSRC=        ${BOOTSRC}/ficl
29 LDRSRC=         ${BOOTSRC}/common
30 LIBLUASRC=      ${BOOTSRC}/liblua
31 LIBOFWSRC=      ${BOOTSRC}/libofw
32 LUASRC=         ${SRCTOP}/contrib/lua/src
33 SASRC=          ${BOOTSRC}/libsa
34 SYSDIR=         ${SRCTOP}/sys
35 UBOOTSRC=       ${BOOTSRC}/uboot
36 ZFSSRC=         ${SASRC}/zfs
37 LIBCSRC=        ${SRCTOP}/lib/libc
38
39 BOOTOBJ=        ${OBJTOP}/stand
40
41 # BINDIR is where we install
42 BINDIR?=        /boot
43
44 # LUAPATH is where we search for and install lua scripts.
45 LUAPATH?=       /boot/lua
46 FLUASRC?=       ${SRCTOP}/libexec/flua
47
48 LIBSA=          ${BOOTOBJ}/libsa/libsa.a
49 .if ${MACHINE} == "i386"
50 LIBSA32=        ${LIBSA}
51 .else
52 LIBSA32=        ${BOOTOBJ}/libsa32/libsa32.a
53 .endif
54
55 # Standard options:
56 CFLAGS+=        -nostdinc
57 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
58 CFLAGS+=        -I${BOOTOBJ}/libsa32
59 .else
60 CFLAGS+=        -I${BOOTOBJ}/libsa
61 .endif
62 CFLAGS+=        -I${SASRC} -D_STANDALONE
63 CFLAGS+=        -I${SYSDIR}
64 # Spike the floating point interfaces
65 CFLAGS+=        -Ddouble=jagged-little-pill -Dfloat=floaty-mcfloatface
66 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
67 # Slim down the image. This saves about 15% in size with clang 6 on x86
68 # Our most constrained /boot/loader env is BIOS booting on x86, where
69 # our text + data + BTX have to fit into 640k below the ISA hole.
70 # Experience has shown that problems arise between ~520k to ~530k.
71 CFLAGS.clang+=  -Oz
72 CFLAGS.gcc+=    -Os
73 CFLAGS+=        -ffunction-sections -fdata-sections
74 .endif
75
76 # GELI Support, with backward compat hooks (mostly)
77 .if defined(LOADER_NO_GELI_SUPPORT)
78 MK_LOADER_GELI=no
79 .warning "Please move from LOADER_NO_GELI_SUPPORT to WITHOUT_LOADER_GELI"
80 .endif
81 .if defined(LOADER_GELI_SUPPORT)
82 MK_LOADER_GELI=yes
83 .warning "Please move from LOADER_GELI_SUPPORT to WITH_LOADER_GELI"
84 .endif
85 .if ${MK_LOADER_GELI} == "yes"
86 CFLAGS+=        -DLOADER_GELI_SUPPORT
87 CFLAGS+=        -I${SASRC}/geli
88 .endif # MK_LOADER_GELI
89
90 # These should be confined to loader.mk, but can't because uboot/lib
91 # also uses it. It's part of loader, but isn't a loader so we can't
92 # just include loader.mk
93 .if ${LOADER_DISK_SUPPORT:Uyes} == "yes"
94 CFLAGS+= -DLOADER_DISK_SUPPORT
95 .endif
96
97 # Machine specific flags for all builds here
98
99 # All PowerPC builds are 32 bit. We have no 64-bit loaders on powerpc
100 # or powerpc64.
101 .if ${MACHINE_ARCH} == "powerpc64"
102 CFLAGS+=        -m32 -mcpu=powerpc
103 .endif
104
105 # For amd64, there's a bit of mixed bag. Some of the tree (i386, lib*32) is
106 # build 32-bit and some 64-bit (lib*, efi). Centralize all the 32-bit magic here
107 # and activate it when DO32 is explicitly defined to be 1.
108 .if ${MACHINE_ARCH} == "amd64" && ${DO32:U0} == 1
109 CFLAGS+=        -m32
110 # LD_FLAGS is passed directly to ${LD}, not via ${CC}:
111 LD_FLAGS+=      -m elf_i386_fbsd
112 AFLAGS+=        --32
113 .endif
114
115 SSP_CFLAGS=
116
117 # Add in the no float / no SIMD stuff and announce we're freestanding
118 # aarch64 and riscv don't have -msoft-float, but all others do.
119 CFLAGS+=        -ffreestanding ${CFLAGS_NO_SIMD}
120 .if ${MACHINE_CPUARCH} == "aarch64"
121 CFLAGS+=        -mgeneral-regs-only -ffixed-x18 -fPIC
122 .elif ${MACHINE_CPUARCH} == "riscv"
123 CFLAGS+=        -march=rv64imac -mabi=lp64 -fPIC
124 CFLAGS.clang+=  -mcmodel=medium
125 CFLAGS.gcc+=    -mcmodel=medany
126 .else
127 CFLAGS+=        -msoft-float
128 .endif
129
130 # -msoft-float seems to be insufficient for powerpcspe
131 .if ${MACHINE_ARCH} == "powerpcspe"
132 CFLAGS+=        -mno-spe
133 .endif
134
135 .if ${MACHINE_CPUARCH} == "i386" || (${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 1)
136 CFLAGS+=        -march=i386
137 CFLAGS.gcc+=    -mpreferred-stack-boundary=2
138 .endif
139 .if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
140 CFLAGS+=        -fPIC -mno-red-zone
141 .endif
142
143 .if ${MACHINE_CPUARCH} == "arm"
144 # Do not generate movt/movw, because the relocation fixup for them does not
145 # translate to the -Bsymbolic -pie format required by self_reloc() in loader(8).
146 # Also, the fpu is not available in a standalone environment.
147 CFLAGS.clang+=  -mno-movt
148 CFLAGS.clang+=  -mfpu=none
149 CFLAGS+=        -fPIC
150 .endif
151
152 # Some RISC-V linkers have support for relaxations, while some (lld) do not
153 # yet. If this is the case we inhibit the compiler from emitting relaxations.
154 .if ${MACHINE_CPUARCH} == "riscv" && ${LINKER_FEATURES:Mriscv-relaxations} == ""
155 CFLAGS+=        -mno-relax
156 .endif
157
158 # The boot loader build uses dd status=none, where possible, for reproducible
159 # build output (since performance varies from run to run). Trouble is that
160 # option was recently (10.3) added to FreeBSD and is non-standard. Only use it
161 # when this test succeeds rather than require dd to be a bootstrap tool.
162 DD_NOSTATUS!=(dd status=none count=0 2> /dev/null && echo status=none) || true
163 DD=dd ${DD_NOSTATUS}
164
165 .if ${MACHINE_CPUARCH} == "mips"
166 CFLAGS+=        -G0 -fno-pic -mno-abicalls
167 .endif
168
169 .if ${MK_LOADER_FORCE_LE} != "no"
170 .if ${MACHINE_ARCH} == "powerpc64"
171 CFLAGS+=        -mlittle-endian
172 .endif
173 .endif
174
175 #
176 # Have a sensible default
177 #
178 .if ${MK_LOADER_LUA} == "yes"
179 LOADER_DEFAULT_INTERP?=lua
180 .elif ${MK_FORTH} == "yes"
181 LOADER_DEFAULT_INTERP?=4th
182 .else
183 LOADER_DEFAULT_INTERP?=simp
184 .endif
185 LOADER_INTERP?=${LOADER_DEFAULT_INTERP}
186
187 # Make sure we use the machine link we're about to create
188 CFLAGS+=-I.
189
190 all: ${PROG}
191
192 CLEANFILES+= teken_state.h
193 teken.c: teken_state.h
194
195 teken_state.h: ${SYSDIR}/teken/sequences
196         awk -f ${SYSDIR}/teken/gensequences \
197                 ${SYSDIR}/teken/sequences > teken_state.h
198
199 .if !defined(NO_OBJ)
200 _ILINKS=include/machine
201 .if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64"
202 _ILINKS+=include/${MACHINE_CPUARCH}
203 .endif
204 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
205 _ILINKS+=include/x86
206 .endif
207 CFLAGS+= -Iinclude
208 CLEANDIRS+= include
209
210 beforedepend: ${_ILINKS}
211 beforebuild: ${_ILINKS}
212
213 # Ensure that the links exist without depending on it when it exists which
214 # causes all the modules to be rebuilt when the directory pointed to changes.
215 .for _link in ${_ILINKS}
216 .if !exists(${.OBJDIR}/${_link})
217 ${OBJS}:       ${_link}
218 .endif # _link exists
219 .endfor
220
221 .NOPATH: ${_ILINKS}
222
223 ${_ILINKS}: .NOMETA
224         @case ${.TARGET:T} in \
225         machine) \
226                 if [ ${DO32:U0} -eq 0 ]; then \
227                         path=${SYSDIR}/${MACHINE}/include ; \
228                 else \
229                         path=${SYSDIR}/${MACHINE:C/amd64/i386/}/include ; \
230                 fi ;; \
231         *) \
232                 path=${SYSDIR}/${.TARGET:T}/include ;; \
233         esac ; \
234         case ${.TARGET} in \
235         */*) mkdir -p ${.TARGET:H};; \
236         esac ; \
237         path=`(cd $$path && /bin/pwd)` ; \
238         ${ECHO} ${.TARGET} "->" $$path ; \
239         ln -fhs $$path ${.TARGET}
240 .endif # !NO_OBJ
241 .endif # __BOOT_DEFS_MK__