home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sa104os2.zip / SATHR104.ZIP / SATHER / SYSTEM / CONFIG < prev    next >
Text File  |  1995-02-15  |  1KB  |  35 lines

  1. -- Constants defined for a compiler installation.  These should
  2. -- be edited to be appropriate to your platform.
  3.  
  4. -- what comes before file names for the C compile
  5. -- This is set to not check ANSI pedantically as it did in previous versions.
  6. "icc /Q"
  7.  
  8. -- what comes after file names for the C compile; '#' is expanded 
  9. -- into the home directory at compile time.  This is only used for
  10. -- the link step.
  11. "#\System\base.lib #\System\GC\gc.lib"
  12.  
  13. -- extra args to pass to C compile if optimization turned on
  14. "/O"
  15.  
  16. -- extra args to pass to C compile if debugging turned on
  17. "/Ti /Gh /B/DE /B/NOE"
  18.  
  19. -- extra args to pass to C compile if verbose is on
  20. ""
  21.  
  22. -- the command to invoke make
  23. "nmake -nologo"
  24.  
  25. -- extra args to pass to make command if verbose is _off_
  26. "/s"
  27.     
  28. -- what to insert before filename in the command line for an executable
  29. "/B/ALIGN:32 /Fe"
  30.  
  31. -- Set this to "true" if reads or writes to *NULL will cause a segfault.  If
  32. -- this is true, inline checks against void can be omitted.  Otherwise
  33. -- set it to "false".
  34. "true"
  35.