comparison src/m/ibmrs6000.h @ 2470:6643737d26ae

* m/imbrs6000.h: If we're using GCC, define ORDINARY_LINK instead of defining LINKER to use cc. * s/aix3-1.h (LINKER): Don't use cc for linking command if we're using GCC. * s/aix3-2.h (SYSTEM_MALLOC): Undefine this.
author Jim Blandy <jimb@redhat.com>
date Wed, 07 Apr 1993 16:36:59 +0000
parents 158faf65239b
children 6c044c8796dd
comparison
equal deleted inserted replaced
2469:250c60d32a5a 2470:6643737d26ae
129 129
130 /* Don't try to include sioctl.h or ptem.h. */ 130 /* Don't try to include sioctl.h or ptem.h. */
131 #undef NEED_SIOCTL 131 #undef NEED_SIOCTL
132 #undef NEED_PTEM_H 132 #undef NEED_PTEM_H
133 133
134 #undef LINKER 134 #ifdef __GNUC__
135 #define LINKER cc -Wl,-bnso,-bnodelcsect,-bI:/lib/syscalls.exp 135 # define ORDINARY_LINK
136 #else
137 # undef LINKER
138 # define LINKER cc -Wl,-bnso,-bnodelcsect,-bI:/lib/syscalls.exp
139 #endif