Commit eff0f7ac by Michael Meissner Committed by Michael Meissner

Do not define inhibit_libc if it was already defined

From-SVN: r17258
parent 6a4b8331
Mon Dec 29 15:58:18 1997 Michael Meissner <meissner@cygnus.com>
* libgcc2.c (inhibit_libc): Don't define inhibit_libc when cross
compiling if it was already defined.
Sun Dec 28 00:32:16 1997 Jeffrey A Law (law@cygnus.com)
* flow.c (find_basic_blocks): Don't create a new basic block
......
......@@ -49,7 +49,7 @@ Boston, MA 02111-1307, USA. */
/* In a cross-compilation situation, default to inhibiting compilation
of routines that use libc. */
#ifdef CROSS_COMPILE
#if defined(CROSS_COMPILE) && !defined(inhibit_libc)
#define inhibit_libc
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment