From: Richard Stallman Date: Sat, 23 May 1992 21:04:29 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=607a4f7de314bad1860911ff90e7a159f4f8f6c4;p=gcc.git *** empty log message *** From-SVN: r1065 --- diff --git a/gcc/gcc.c b/gcc/gcc.c index aeab0faa56b..a7a2e41a93f 100644 --- 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);