summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/Makefile.inc
blob: 83db76a879009d1fd9886675e2903a5ec100a2b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $FreeBSD$

BINDIR?=	/boot

.if ${MACHINE_CPUARCH} == "i386"
CFLAGS+=        -march=i386
CFLAGS+=	-msoft-float
.endif

# Options used when building app-specific efi components
# See conf/kern.mk for the correct set of these
CFLAGS+=	-ffreestanding -Wformat
LDFLAGS+=	-nostdlib

.if ${MACHINE_CPUARCH} == "amd64"
CFLAGS+=	-fshort-wchar
CFLAGS+=	-mno-red-zone
CFLAGS+=	-mno-mmx -mno-sse
CFLAGS.clang+=	-mno-aes -mno-avx
CFLAGS+=	-msoft-float
.endif


.include "../Makefile.inc"
OpenPOWER on IntegriCloud