*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Sat, 23 May 1992 21:04:29 +0000 (21:04 +0000)
committerRichard Stallman <rms@gnu.org>
Sat, 23 May 1992 21:04:29 +0000 (21:04 +0000)
From-SVN: r1065

gcc/gcc.c

index aeab0faa56b61edd15b3a4f53040f35d4f8cd1db..a7a2e41a93fda1a39f82764db872428a9418d4fd 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -839,6 +839,7 @@ static char *gcc_exec_prefix;
 #ifdef CROSS_COMPILE  /* Don't use these prefixes for a cross compiler.  */
 #undef MD_EXEC_PREFIX
 #undef MD_STARTFILE_PREFIX
+#undef MD_STARTFILE_PREFIX_1
 #endif
 
 #ifndef STANDARD_EXEC_PREFIX
@@ -858,6 +859,9 @@ static char *md_exec_prefix = MD_EXEC_PREFIX;
 #ifdef MD_STARTFILE_PREFIX
 static char *md_startfile_prefix = MD_STARTFILE_PREFIX;
 #endif
+#ifdef MD_STARTFILE_PREFIX_1
+static char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
+#endif
 static char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
 static char *standard_startfile_prefix_1 = "/lib/";
 static char *standard_startfile_prefix_2 = "/usr/lib/";
@@ -3061,6 +3065,10 @@ main (argc, argv)
       add_prefix (&startfile_prefix, md_startfile_prefix, 0, 0, 0);
 #endif
 
+#ifdef MD_STARTFILE_PREFIX_1
+      add_prefix (&startfile_prefix, md_startfile_prefix_1, 0, 0, 0);
+#endif
+
       add_prefix (&startfile_prefix, standard_startfile_prefix, 0, 0, 0);
       add_prefix (&startfile_prefix, standard_startfile_prefix_1, 0, 0, 0);
       add_prefix (&startfile_prefix, standard_startfile_prefix_2, 0, 0, 0);