diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/m/mips4.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/m/mips4.h b/src/m/mips4.h index f0cfd436111..cb9753552ad 100644 --- a/src/m/mips4.h +++ b/src/m/mips4.h | |||
| @@ -33,7 +33,12 @@ NOTE-END */ | |||
| 33 | #define START_FILES pre-crt0.o /lib/crt1.o | 33 | #define START_FILES pre-crt0.o /lib/crt1.o |
| 34 | /* Used to have -lisode, but jlp@math.byu.edu says remove it | 34 | /* Used to have -lisode, but jlp@math.byu.edu says remove it |
| 35 | (for RISCOS 4.52). */ | 35 | (for RISCOS 4.52). */ |
| 36 | #define LIB_STANDARD -lmld -lc /lib/crtn.o | 36 | /* ethanb@ptolemy.astro.washington.edu says crtn.o uses _ctype |
| 37 | and therefore we must search libc again after crtn.o. | ||
| 38 | The -L is used to force second -lc to find the sysv version | ||
| 39 | of libc.a, which is needed because the BSD libc.a | ||
| 40 | doesn't have _ctype. */ | ||
| 41 | #define LIB_STANDARD -lmld -lc /lib/crtn.o -L/usr/lib -lc | ||
| 37 | 42 | ||
| 38 | 43 | ||
| 39 | #define COFF | 44 | #define COFF |