Deleted Added
full compact
freebsd-native.h (70703) freebsd-native.h (73306)
1/* $FreeBSD: head/gnu/usr.bin/cc/cc_tools/freebsd-native.h 70703 2001-01-06 06:16:31Z obrien $ */
1/* $FreeBSD: head/gnu/usr.bin/cc/cc_tools/freebsd-native.h 73306 2001-03-02 02:56:59Z 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
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#undef FREEBSD_NATIVE
8#define FREEBSD_NATIVE 1
9
7#undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */
8#undef GCC_INCLUDE_DIR /* We don't need one for now. */
9#undef TOOL_INCLUDE_DIR /* We don't need one for now. */
10#undef LOCAL_INCLUDE_DIR /* We don't wish to support one. */
11
12/* Look for the include files in the system-defined places. */
13#define GPLUSPLUS_INCLUDE_DIR PREFIX"/include/g++"
14#define GCC_INCLUDE_DIR PREFIX"/include"
15#ifdef CROSS_COMPILE
16#define CROSS_INCLUDE_DIR PREFIX"/include"
17#endif
18
19/* Under FreeBSD, the normal location of the compiler back ends is the
20 /usr/libexec directory.
21
22 ``cc --print-search-dirs'' gives:
23 install: STANDARD_EXEC_PREFIX/(null)
24 programs: /usr/libexec/<OBJFORMAT>/:MD_EXEC_PREFIX
25 libraries: MD_EXEC_PREFIX:MD_STARTFILE_PREFIX:STANDARD_STARTFILE_PREFIX
26
27 We really don't need a "STANDARD_EXEC_PREFIX". However w/o it,
28 "--print-search-dirs" reports "install: /usr/local/lib/gcc-lib/(null)".
29 It is not harmful, but is just plain wrong. So we define a
30 "STANDARD_EXEC_PREFIX" to not be misleading. */
31
32#undef STANDARD_EXEC_PREFIX
33#undef TOOLDIR_BASE_PREFIX /* Old?? This is not documented. */
34#undef MD_EXEC_PREFIX
35
36#define STANDARD_EXEC_PREFIX PREFIX"/libexec/"
37#define MD_EXEC_PREFIX PREFIX"/libexec/"
38
39/* Under FreeBSD, the normal location of the various *crt*.o files is the
40 /usr/lib directory. */
41
42#undef STANDARD_STARTFILE_PREFIX
43#undef MD_STARTFILE_PREFIX /* We don't need one for now. */
44
45#define STANDARD_STARTFILE_PREFIX PREFIX"/lib/"
46
47/* FreeBSD is 4.4BSD derived */
48#define bsd4_4
10#undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */
11#undef GCC_INCLUDE_DIR /* We don't need one for now. */
12#undef TOOL_INCLUDE_DIR /* We don't need one for now. */
13#undef LOCAL_INCLUDE_DIR /* We don't wish to support one. */
14
15/* Look for the include files in the system-defined places. */
16#define GPLUSPLUS_INCLUDE_DIR PREFIX"/include/g++"
17#define GCC_INCLUDE_DIR PREFIX"/include"
18#ifdef CROSS_COMPILE
19#define CROSS_INCLUDE_DIR PREFIX"/include"
20#endif
21
22/* Under FreeBSD, the normal location of the compiler back ends is the
23 /usr/libexec directory.
24
25 ``cc --print-search-dirs'' gives:
26 install: STANDARD_EXEC_PREFIX/(null)
27 programs: /usr/libexec/<OBJFORMAT>/:MD_EXEC_PREFIX
28 libraries: MD_EXEC_PREFIX:MD_STARTFILE_PREFIX:STANDARD_STARTFILE_PREFIX
29
30 We really don't need a "STANDARD_EXEC_PREFIX". However w/o it,
31 "--print-search-dirs" reports "install: /usr/local/lib/gcc-lib/(null)".
32 It is not harmful, but is just plain wrong. So we define a
33 "STANDARD_EXEC_PREFIX" to not be misleading. */
34
35#undef STANDARD_EXEC_PREFIX
36#undef TOOLDIR_BASE_PREFIX /* Old?? This is not documented. */
37#undef MD_EXEC_PREFIX
38
39#define STANDARD_EXEC_PREFIX PREFIX"/libexec/"
40#define MD_EXEC_PREFIX PREFIX"/libexec/"
41
42/* Under FreeBSD, the normal location of the various *crt*.o files is the
43 /usr/lib directory. */
44
45#undef STANDARD_STARTFILE_PREFIX
46#undef MD_STARTFILE_PREFIX /* We don't need one for now. */
47
48#define STANDARD_STARTFILE_PREFIX PREFIX"/lib/"
49
50/* FreeBSD is 4.4BSD derived */
51#define bsd4_4