home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l350 / 2.ddi / BIN / HC386.LNK < prev    next >
Encoding:
Text File  |  1993-02-08  |  1.1 KB  |  30 lines

  1. !
  2. ! 386|LINK command file to link a MetaWare High C/C++ program to run
  3. ! under Phar Lap's 386|DOS-Extender
  4. !
  5. -exeformat exp            ! create a .EXP output file
  6. -defstubname gorun386        ! bind GORUN386 stub loader on the output file
  7. -stack 4000h            ! give program a 16K stack
  8. -maxdata 0            ! no extra memory allocated at pgm load time
  9. -twocase            ! case-sensitive link
  10. -lib hc386            ! C library
  11. -lib hcc386            ! C++ library
  12. -lib hc387            ! C floating point library
  13. -lib hcc387            ! C++ floating point library
  14. !-lib hcsoft            ! C floating point emulation
  15. !-lib hccsoft            ! C++ floating point emulation
  16. -lib dosx32.lib            ! _dx_ functions for Phar Lap system calls
  17. -386                ! 386 (or later) processor target
  18.  
  19. ! Give code the "er" (execute/read) and data the "rw" (read/write)
  20. ! attributes, so a debugger (such as 386|SRCBug) will be able to
  21. ! distinguish between code and data symbols
  22.  
  23. -attributes class CODE er
  24. -attributes group CGROUP er
  25. -attributes class DATA rw
  26. -attributes class CONST rw
  27. -attributes class BSS rw
  28. -attributes class STACK rw
  29. -attributes group DGROUP rw
  30.