◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── LINK Fatal Error L1071 segment _TEXT exceeds 64K-16 The segment named _TEXT grew larger than 65,520 bytes. This error is likely to occur only in small-model C programs, but it can occur when any program with a segment named _TEXT is linked using the LINK /DOSSEG option. Small-model C programs must reserve code addresses 0 and 1; this range is increased to 16 for alignment purposes. Try compiling and linking using the medium or large model. If the program is in C, use CL's /NT option or the __based keyword (or its predecessor, the alloc_text pragma) to build smaller segments. -♦-