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$
    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 -mno-sse3
   10 LDFLAGS+=       -nostdlib
   11 
   12 .if ${MACHINE_ARCH} == "amd64"
   13 CFLAGS+=        -m32 -march=i386
   14 # LD_FLAGS is passed directly to ${LD}, not via ${CC}:
   15 LD_FLAGS+=      -m elf_i386_fbsd
   16 AFLAGS+=        --32
   17 .endif
   18 
   19 # BTX components
   20 .if exists(${.OBJDIR}/../btx)
   21 BTXDIR=         ${.OBJDIR}/../btx
   22 .else
   23 BTXDIR=         ${.CURDIR}/../btx
   24 .endif
   25 BTXLDR=         ${BTXDIR}/btxldr/btxldr
   26 BTXKERN=        ${BTXDIR}/btx/btx
   27 BTXCRT=         ${BTXDIR}/lib/crt0.o

Cache object: 3df95ac26fcd418957b7015d3ee41c85


[ 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.