Deleted Added
full compact
Makefile.inc (217123) Makefile.inc (217128)
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile.inc 217123 2011-01-07 20:26:33Z imp $
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile.inc 217128 2011-01-07 22:57:31Z tijl $
2
3.include "../Makefile.inc"
4
5# Sometimes this is .include'd several times...
6.if !defined(__CC_MAKEFILE_INC__)
7__CC_MAKEFILE_INC__= ${MFILE}
8
9GCCVER= 4.2

--- 7 unchanged lines hidden (view full) ---

17GCC_TARGET= ${TARGET_ARCH}-undermydesk-freebsd
18
19CFLAGS+= -DGCCVER=\"${GCCVER}\"
20CFLAGS+= -DIN_GCC -DHAVE_CONFIG_H
21CFLAGS+= -DPREFIX=\"${TOOLS_PREFIX}/usr\"
22#CFLAGS+= -DWANT_COMPILER_INVARIANTS
23CSTD?= gnu89
24
2
3.include "../Makefile.inc"
4
5# Sometimes this is .include'd several times...
6.if !defined(__CC_MAKEFILE_INC__)
7__CC_MAKEFILE_INC__= ${MFILE}
8
9GCCVER= 4.2

--- 7 unchanged lines hidden (view full) ---

17GCC_TARGET= ${TARGET_ARCH}-undermydesk-freebsd
18
19CFLAGS+= -DGCCVER=\"${GCCVER}\"
20CFLAGS+= -DIN_GCC -DHAVE_CONFIG_H
21CFLAGS+= -DPREFIX=\"${TOOLS_PREFIX}/usr\"
22#CFLAGS+= -DWANT_COMPILER_INVARIANTS
23CSTD?= gnu89
24
25# If building 64-bit longs for the i386, "_LARGE_LONG" should also be defined
26# to get the proper sizes in limits.h
27.if defined(LONG_TYPE_SIZE)
28CFLAGS+= -DLONG_TYPE_SIZE=${LONG_TYPE_SIZE}
29.endif
30
31.if ${TARGET_ARCH} != ${MACHINE_ARCH}
32CFLAGS+= -DCROSS_COMPILE
33.endif
34
35.if ${TARGET_ARCH} == "armeb"
36CFLAGS += -DTARGET_ENDIAN_DEFAULT=MASK_BIG_END
37.endif
38

--- 71 unchanged lines hidden ---
25.if ${TARGET_ARCH} != ${MACHINE_ARCH}
26CFLAGS+= -DCROSS_COMPILE
27.endif
28
29.if ${TARGET_ARCH} == "armeb"
30CFLAGS += -DTARGET_ENDIAN_DEFAULT=MASK_BIG_END
31.endif
32

--- 71 unchanged lines hidden ---