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