diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-24 06:52:53 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-24 06:52:53 +0000 |
commit | 87d11e4386cc35cc4b7ad51882e0ba8718e459bb (patch) | |
tree | bf8eee65417ba857d505267a076d6632f5fc30eb | |
parent | f91d9a467729f3331266f73ff0249eefdf19fd8a (diff) | |
download | gcc-87d11e4386cc35cc4b7ad51882e0ba8718e459bb.zip gcc-87d11e4386cc35cc4b7ad51882e0ba8718e459bb.tar.gz gcc-87d11e4386cc35cc4b7ad51882e0ba8718e459bb.tar.bz2 |
(CLIB): Defined.
From-SVN: r4553
-rw-r--r-- | gcc/config/i386/x-aix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config/i386/x-aix b/gcc/config/i386/x-aix index 6b0532a..41a5ac6 100644 --- a/gcc/config/i386/x-aix +++ b/gcc/config/i386/x-aix @@ -1,5 +1,15 @@ # There is an alloca in -lbsd, but it is limited to 32K ALLOCA = alloca.o +# If you are running out of memory while compiling gcc, with the standard +# /bin/cc uncomment MALLOCLIB line. That version of malloc is slower but +# has less overhead than the one in libc. +#MALLOCLIB = -lmalloc + +# Uncomment out the next line if you want to link with the shareable libc_s. +#CLIB_S = -lc_s + +CLIB = -lld $(MALLOCLIB) $(CLIB_S) + # Use a special fixincludes file to avoid munging types.h. FIXINCLUDES = fixinc.ps2 |