8a4217aacf
simd / no float stuff is centeralized here. Also centralise -ffreestanding since it is specified everywhere. This, along with a change to share/mk/bsd.cpu.mk to include -mno-avx2 in CFLAGS_NO_SIMD should fix building for newer machines (eg with CPUTYPE=haswell) where clang was generating avx2 instructions. Sponsored by: Netflix
34 lines
844 B
Makefile
34 lines
844 B
Makefile
# Common defines for all of stand/i386/
|
|
#
|
|
# $FreeBSD$
|
|
|
|
LOADER_ADDRESS?=0x200000
|
|
LDFLAGS+= -nostdlib
|
|
|
|
# BTX components
|
|
BTXDIR= ${BOOTOBJ}/i386/btx
|
|
BTXLDR= ${BTXDIR}/btxldr/btxldr
|
|
BTXKERN= ${BTXDIR}/btx/btx
|
|
BTXCRT= ${BTXDIR}/lib/crt0.o
|
|
|
|
BTXSRC= ${BOOTSRC}/i386/btx
|
|
BTXLIB= ${BTXSRC}/lib
|
|
|
|
# compact binary with no padding between text, data, bss
|
|
LDSCRIPT= ${BOOTSRC}/i386/boot.ldscript
|
|
# LDFLAGS_BIN=-e start -Ttext ${ORG} -Wl,-T,${LDSCRIPT},-S,--oformat,binary
|
|
# LD_FLAGS_BIN=-static -T ${LDSCRIPT} --gc-sections
|
|
LDFLAGS_BIN=-e start -Ttext ${ORG} -Wl,-N,-S,--oformat,binary
|
|
LD_FLAGS_BIN=-static -N --gc-sections
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
DO32=1
|
|
.endif
|
|
|
|
.if defined(LOADER_FIREWIRE_SUPPORT)
|
|
MK_LOADER_FIREWIRE=yes
|
|
.warning "LOADER_FIREWIRE_SUPPORT deprecated, please move to WITH_LOADER_FIREWIRE"
|
|
.endif
|
|
|
|
.include "../Makefile.inc"
|