diff options
author | Laurynas Biveinis <lauras@softhome.net> | 2001-02-07 00:33:20 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2001-02-06 19:33:20 -0500 |
commit | df447210c354fd23950cc3d076559555f1091548 (patch) | |
tree | 83de53c750b80cc70119452135946c4c34fa5ebb | |
parent | 222bb619fbdc3775767cde2d500c92d58ce1d499 (diff) | |
download | gcc-df447210c354fd23950cc3d076559555f1091548.zip gcc-df447210c354fd23950cc3d076559555f1091548.tar.gz gcc-df447210c354fd23950cc3d076559555f1091548.tar.bz2 |
djgpp.h: Add comments about standard paths.
* config/i386/djgpp.h: Add comments about standard paths.
(MD_EXEC_PREFIX): Undefine before defining.
(MD_STARTFILE_PREFIX): New.
From-SVN: r39504
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/djgpp.h | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0937f24..7aa8c72 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-02-06 Laurynas Biveinis <lauras@softhome.net> + + * config/i386/djgpp.h: Add comments about standard paths. + (MD_EXEC_PREFIX): Undefine before defining. + (MD_STARTFILE_PREFIX): New. + 2001-01-30 Bruce Korb <bkorb@gnu.org> fixinc/fixincl.c(process): Emit error message only if appropriate :) diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 165a2af..91940b5 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -90,13 +90,22 @@ Boston, MA 02111-1307, USA. */ #undef UNALIGNED_SHORT_ASM_OP #define UNALIGNED_SHORT_ASM_OP "\t.short\t" -/* Tell GCC where our standard include directory is. */ +/* Define standard DJGPP installation paths. */ +/* We override default /usr or /usr/local part with /dev/env/DJDIR which */ +/* points to actual DJGPP instalation directory. */ + +/* Standard include directory */ #undef STANDARD_INCLUDE_DIR #define STANDARD_INCLUDE_DIR "/dev/env/DJDIR/include/" /* Search for as.exe and ld.exe in DJGPP's binary directory. */ +#undef MD_EXEC_PREFIX #define MD_EXEC_PREFIX "/dev/env/DJDIR/bin/" +/* Standard DJGPP library and startup files */ +#undef MD_STARTFILE_PREFIX +#define MD_STARTFILE_PREFIX "/dev/env/DJDIR/lib/" + /* Correctly handle absolute filename detection in cp/xref.c */ #define FILE_NAME_ABSOLUTE_P(NAME) \ (((NAME)[0] == '/') || ((NAME)[0] == '\\') || \ |