Building .COM File with Main Language = None Causes L1127

Last reviewed: July 17, 1997
Article ID: Q72789
1.10 | 1.10 MS-DOS | OS/2 kbtool

The information in this article applies to:

  • Microsoft Programmer's Workbench for MS-DOS, version 1.1
  • Microsoft Programmer's Workbench for OS/2, version 1.1

SUMMARY

When creating a tiny model program (.COM file) with the Microsoft Programmer's WorkBench (PWB) version 1.1, it is important to have "Main Language" set to "C", instead of using "None", which is the default. If Main Language is set to None, the following LINK error is generated:

   LINK: fatal error L1127: far segment references not allowed
                            with /TINY

The error occurs because CRTCOM.LIB, which contains the C startup code for .COM programs, does not get linked in when Main Language is set to None. This results in segment references to both code and data that are in two different segments. Since a .COM program must have both the code and data in a single segment, the L1127 error is generated.

You can check the Main Language setting by selecting the Options menu and choosing Build Options. In the Build Options dialog box you can see your Main Language selection and you can also change it there, if necessary. If you receive the L1127 error when trying to build a .COM file inside PWB, make sure your Main Language is set to an appropriate language and then rebuild your project.


Additional reference words: kbinf 1.10 PWBIss
KBCategory: kbtool
KBSubcategory: PWBIss
Keywords : kb16bitonly


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 17, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.