home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MSLINK.ZIP / MSLINK.DOC
Encoding:
Text File  |  1988-08-16  |  1.0 KB  |  18 lines

  1.  
  2. Date: Wed, 5 Feb 86 06:07:10 PST
  3. Subject: Undocumented Microsoft LINK Option: /E
  4.  
  5. There exists an undocumented(?) switch to Microsoft LINK.EXE ver 3.XX,
  6. which will cause an automatic compaction during binding.  This process
  7. will eliminate storage for uninitialized arrays from the .EXE file
  8. produced by the linker, reducing the .EXE file size by up to 300 percent!
  9. To use this feature, specify the /E option to the command line, eg
  10.  
  11.         LINK myprog/E;
  12.  
  13. should work.  For example, PCKERMIT.EXE ver 2.27 was 80K when linked normally
  14. but shrunk down to 33K when linked with the /E option...
  15.  
  16.  
  17.