]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/boot/Makefile.inc
Add AXP221 node in our BananaPi M2 dts.
[FreeBSD/FreeBSD.git] / sys / boot / Makefile.inc
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 SSP_CFLAGS=
6
7 .if ${MACHINE_CPUARCH} == "arm"
8 # Do not generate movt/movw, because the relocation fixup for them does not
9 # translate to the -Bsymbolic -pie format required by self_reloc() in loader(8).
10 # Also, the fpu is not available in a standalone environment.
11 .if ${COMPILER_VERSION} < 30800
12 CFLAGS.clang+=  -mllvm -arm-use-movt=0
13 .else
14 CFLAGS.clang+=  -mno-movt
15 .endif
16 CFLAGS.clang+=  -mfpu=none
17 .endif