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