djgpp.h: Add comments about standard paths.
authorLaurynas Biveinis <lauras@softhome.net>
Wed, 7 Feb 2001 00:33:20 +0000 (00:33 +0000)
committerDJ Delorie <dj@gcc.gnu.org>
Wed, 7 Feb 2001 00:33:20 +0000 (19:33 -0500)
* config/i386/djgpp.h: Add comments about standard paths.
(MD_EXEC_PREFIX): Undefine before defining.
(MD_STARTFILE_PREFIX): New.

From-SVN: r39504

gcc/ChangeLog
gcc/config/i386/djgpp.h

index 0937f2473b01298ac743273345f453760b47bf4a..7aa8c7255c861bc7cb282847459f8f9e0198385f 100644 (file)
@@ -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 :)
index 165a2afc0d9b5c79cb1a71303f92fe863ce9c5d9..91940b570ef276b72f026fe380b19f4f0e2d8156 100644 (file)
@@ -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] == '\\') || \