The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/boot/i386/Makefile.inc

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # Common defines for all of /sys/boot/i386/
    2 #
    3 # $FreeBSD: releng/6.0/sys/boot/i386/Makefile.inc 143661 2005-03-15 18:43:36Z obrien $
    4 
    5 BINDIR?=        /boot
    6 
    7 LOADER_ADDRESS?=0x200000
    8 CFLAGS+=        -ffreestanding -mpreferred-stack-boundary=2 \
    9                 -mno-mmx -mno-3dnow -mno-sse -mno-sse2
   10 LDFLAGS+=       -nostdlib
   11 
   12 .if ${MACHINE_ARCH} == "amd64"
   13 CFLAGS+=        -m32
   14 LDFLAGS+=       -m elf_i386_fbsd
   15 AFLAGS+=        --32
   16 .endif
   17 
   18 # BTX components
   19 .if exists(${.OBJDIR}/../btx)
   20 BTXDIR=         ${.OBJDIR}/../btx
   21 .else
   22 BTXDIR=         ${.CURDIR}/../btx
   23 .endif
   24 BTXLDR=         ${BTXDIR}/btxldr/btxldr
   25 BTXKERN=        ${BTXDIR}/btx/btx
   26 BTXCRT=         ${BTXDIR}/lib/crt0.o

Cache object: b8e41b774ffc0c2971be9d33ca2f38e9


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.