AMD64 - Fix 64 bit buildworld, missing compiler options in sys/boot
[dragonfly.git] / sys / boot / pc32 / Makefile.inc
1 # Common defines for all of /sys/boot/i386/
2
3 .if !target(__pc32__)
4 __pc32__:
5
6 LOADER_ADDRESS?=        0x200000
7 CFLAGS+=                -ffreestanding -mpreferred-stack-boundary=2
8
9 # override CPU type, so that gcc doesn't insert mmx/sse instructions
10 CPUTYPE=                i386
11
12 .if defined(REALLY_AMD64)
13 .include "../pc64/Makefile.inc"
14 .endif
15 .endif