diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-20 19:41:54 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-20 19:41:54 +0000 |
| commit | 9237b562e5626be573b15dc132ace18e0ec2d682 (patch) | |
| tree | 962b9d549451f9274e9fd365d27fdd3fba4dca45 | |
| parent | b2ff8e4da9dafbe0da89642831874327281e2957 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/cc/cc_tools/freebsd-native.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/freebsd-native.h b/gnu/usr.bin/cc/cc_tools/freebsd-native.h index 85a66c249c5e..ff6296bbdb01 100644 --- a/gnu/usr.bin/cc/cc_tools/freebsd-native.h +++ b/gnu/usr.bin/cc/cc_tools/freebsd-native.h @@ -16,6 +16,8 @@ #define GCC_INCLUDE_DIR PREFIX"/include" #ifdef CROSS_COMPILE #define CROSS_INCLUDE_DIR PREFIX"/include" +#else +#define STANDARD_INCLUDE_DIR PREFIX"/include" #endif /* Under FreeBSD, the normal location of the compiler back ends is the @@ -35,6 +37,9 @@ #undef MD_STARTFILE_PREFIX /* We don't need one for now. */ #define STANDARD_STARTFILE_PREFIX PREFIX"/lib/" +#ifdef CROSS_COMPILE +#define CROSS_STARTFILE_PREFIX PREFIX"/lib/" +#endif /* FreeBSD is 4.4BSD derived */ #define bsd4_4 |
