Deleted Added
full compact
freebsd-native.h (195152) freebsd-native.h (207995)
1/* $FreeBSD: head/gnu/usr.bin/cc/cc_tools/freebsd-native.h 195152 2009-06-29 01:33:59Z kan $ */
1/* $FreeBSD: head/gnu/usr.bin/cc/cc_tools/freebsd-native.h 207995 2010-05-12 19:59:32Z obrien $ */
2
3/* FREEBSD_NATIVE is defined when gcc is integrated into the FreeBSD
4 source tree so it can be configured appropriately without using
5 the GNU configure/build mechanism. */
6
7#define FREEBSD_NATIVE 1
8
9/* Fake out gcc/config/freebsd<version>.h. */
10#define FBSD_MAJOR 8
11#define FBSD_CC_VER 800001 /* form like __FreeBSD_version */
12
13#undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */
14#undef TOOL_INCLUDE_DIR /* We don't need one for now. */
15#undef LOCAL_INCLUDE_DIR /* We don't wish to support one. */
16
17/* Look for the include files in the system-defined places. */
2
3/* FREEBSD_NATIVE is defined when gcc is integrated into the FreeBSD
4 source tree so it can be configured appropriately without using
5 the GNU configure/build mechanism. */
6
7#define FREEBSD_NATIVE 1
8
9/* Fake out gcc/config/freebsd<version>.h. */
10#define FBSD_MAJOR 8
11#define FBSD_CC_VER 800001 /* form like __FreeBSD_version */
12
13#undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */
14#undef TOOL_INCLUDE_DIR /* We don't need one for now. */
15#undef LOCAL_INCLUDE_DIR /* We don't wish to support one. */
16
17/* Look for the include files in the system-defined places. */
18#define GPLUSPLUS_INCLUDE_DIR PREFIX"/include/c++/4.2"
19#define GPLUSPLUS_BACKWARD_INCLUDE_DIR PREFIX"/include/c++/4.2/backward"
20#define GCC_INCLUDE_DIR PREFIX"/include"
18#define GPLUSPLUS_INCLUDE_DIR PREFIX"/include/c++/"GCCVER
19#define GPLUSPLUS_BACKWARD_INCLUDE_DIR PREFIX"/include/c++/"GCCVER"/backward"
20#define GCC_INCLUDE_DIR PREFIX"/include/gcc/"GCCVER
21#ifdef CROSS_COMPILE
22#define CROSS_INCLUDE_DIR PREFIX"/include"
23#else
24#define STANDARD_INCLUDE_DIR PREFIX"/include"
25#endif
26
27/* Under FreeBSD, the normal location of the compiler back ends is the
28 /usr/libexec directory.

--- 36 unchanged lines hidden ---
21#ifdef CROSS_COMPILE
22#define CROSS_INCLUDE_DIR PREFIX"/include"
23#else
24#define STANDARD_INCLUDE_DIR PREFIX"/include"
25#endif
26
27/* Under FreeBSD, the normal location of the compiler back ends is the
28 /usr/libexec directory.

--- 36 unchanged lines hidden ---