Allow for better control over the GCC front-end when building a cross
compiler. * Undo the diking out of cross compiler logic from gcc.c rev 1.16. * Add the `CROSS_STARTFILE_PREFIX' knob. * Add our own definition of `STANDARD_INCLUDE_DIR'. This should have been included in freebsd-native.h rev 1.5.
This commit is contained in:
parent
c21c782ba5
commit
a370115d7d
@ -19,6 +19,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
|
||||
@ -42,6 +44,9 @@
|
||||
/usr/lib directory. */
|
||||
|
||||
#define STANDARD_STARTFILE_PREFIX PREFIX"/lib/"
|
||||
#ifdef CROSS_COMPILE
|
||||
#define CROSS_STARTFILE_PREFIX PREFIX"/lib/"
|
||||
#endif
|
||||
#undef MD_STARTFILE_PREFIX /* We don't need one for now. */
|
||||
|
||||
/* For the native system compiler, we actually build libgcc in a profiled
|
||||
|
Loading…
Reference in New Issue
Block a user