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/conf/kern.mk

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 # $FreeBSD: src/sys/conf/kern.mk,v 1.42.2.1 2005/03/16 18:54:36 obrien Exp $
    2 
    3 #
    4 # Warning flags for compiling the kernel and components of the kernel.
    5 #
    6 # Note that the newly added -Wcast-qual is responsible for generating 
    7 # most of the remaining warnings.  Warnings introduced with -Wall will
    8 # also pop up, but are easier to fix.
    9 .if ${CC} == "icc"
   10 #CWARNFLAGS=    -w2     # use this if you are terribly bored
   11 CWARNFLAGS=
   12 .else
   13 CWARNFLAGS?=    -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
   14                 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
   15                 -fformat-extensions -std=c99
   16 .endif
   17 #
   18 # The following flags are next up for working on:
   19 #       -W
   20 
   21 #
   22 # On the i386, do not align the stack to 16-byte boundaries.  Otherwise GCC
   23 # 2.95 adds code to the entry and exit point of every function to align the
   24 # stack to 16-byte boundaries -- thus wasting approximately 12 bytes of stack
   25 # per function call.  While the 16-byte alignment may benefit micro benchmarks, 
   26 # it is probably an overall loss as it makes the code bigger (less efficient
   27 # use of code cache tag lines) and uses more stack (less efficient use of data
   28 # cache tag lines)
   29 #
   30 .if ${MACHINE_ARCH} == "i386" && ${CC} != "icc"
   31 CFLAGS+=        -mno-align-long-strings -mpreferred-stack-boundary=2 \
   32                 -mno-mmx -mno-3dnow -mno-sse -mno-sse2
   33 INLINE_LIMIT?=  8000
   34 .endif
   35 
   36 #
   37 # On the alpha, make sure that we don't use floating-point registers and
   38 # allow the use of BWX etc instructions (only needed for low-level i/o).
   39 # Also, reserve register t7 to point at per-cpu global variables.
   40 #
   41 .if ${MACHINE_ARCH} == "alpha"
   42 CFLAGS+=        -mno-fp-regs -ffixed-8 -Wa,-mev6
   43 INLINE_LIMIT?=  15000
   44 .endif
   45 
   46 .if ${MACHINE_ARCH} == "arm"
   47 INLINE_LIMIT?=  8000
   48 .endif
   49 #
   50 # For IA-64, we use r13 for the kernel globals pointer and we only use
   51 # a very small subset of float registers for integer divides.
   52 #
   53 .if ${MACHINE_ARCH} == "ia64"
   54 CFLAGS+=        -ffixed-r13 -mfixed-range=f32-f127 -mno-sdata
   55 INLINE_LIMIT?=  15000
   56 .endif
   57 
   58 #
   59 # For sparc64 we want medlow code model, and we tell gcc to use floating
   60 # point emulation.  This avoids using floating point registers for integer
   61 # operations which it has a tendency to do.
   62 #
   63 .if ${MACHINE_ARCH} == "sparc64"
   64 CFLAGS+=        -mcmodel=medlow -msoft-float
   65 INLINE_LIMIT?=  15000
   66 .endif
   67 
   68 #
   69 # For AMD64, use a medium model for now.  We'll switch to "kernel"
   70 # once pmap is ready.  Be excessively careful to not generate FPU code.
   71 #
   72 .if ${MACHINE_ARCH} == "amd64"
   73 CFLAGS+=        -mcmodel=kernel -mno-red-zone \
   74                 -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow \
   75                 -msoft-float -fno-asynchronous-unwind-tables
   76 INLINE_LIMIT?=  8000
   77 .endif
   78 
   79 #
   80 # For PowerPC we tell gcc to use floating point emulation.  This avoids using
   81 # floating point registers for integer operations which it has a tendency to do.
   82 #
   83 .if ${MACHINE_ARCH} == "powerpc"
   84 CFLAGS+=        -msoft-float
   85 INLINE_LIMIT?=  15000
   86 .endif
   87 
   88 #
   89 # GCC 3.0 and above like to do certain optimizations based on the
   90 # assumption that the program is linked against libc.  Stop this.
   91 #
   92 .if ${CC} == "icc"
   93 CFLAGS+=        -nolib_inline
   94 .else
   95 CFLAGS+=        -ffreestanding
   96 .endif
   97 
   98 .if ${CC} == "icc"
   99 CFLAGS+=        -restrict
  100 .endif

Cache object: fd491fae1ae6ea85e01216a19cada307


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