home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / Quick C 2.0 / BIN / QCL.HLP < prev    next >
Encoding:
Text File  |  1988-11-17  |  1.4 KB  |  57 lines

  1. QUICK C COMPILER OPTIONS
  2. -MEMORY MODEL-
  3. /AS small model (default)
  4. /AC compact model
  5. /AM medium model
  6. /AL large model
  7. -OPTIMIZATION-
  8. /O enable optimization (same as /Ot)
  9. /Od disable optimizations
  10. /Ol enable loop optimizations
  11. /Ox enable optimization (same as /Otl)
  12. /Ot enable optimization
  13. -CODE GENERATION-
  14. /G0 8086 instructions (default)
  15. /G2  286 instructions
  16. /Gc Pascal style function calls
  17. /Gi incremental compilation
  18. /Gs no stack checking
  19. /Gt[number] data size threshold
  20. -OUTPUT FILES-
  21. /Fb[bound executable file]
  22. /Fe<executable file>
  23. /Fm[map file]
  24. /Fo<object file>
  25. -PREPROCESSOR-
  26. /C don't strip comments
  27. /D<name>[=text] define macro
  28. /E preprocess to stdout
  29. /EP same as /E but no #line
  30. /I<name> add #include path
  31. /P preprocess to file
  32. /U<name> remove predefined macro
  33. /u remove all predefined macros
  34. /X ignore "standard places"
  35. -LANGUAGE-
  36. /Za disable extensions
  37. /Zd line number information
  38. /Ze enable extensions (default)
  39. /Zi symbolic debugging information
  40. /Zl remove default library info
  41. /Zp pack structures
  42. /Zr enable pointer checking
  43. /Zs syntax check only
  44. -FLOATING POINT-
  45. /FPi inline with emulator (default)
  46. /FPi87 inline with 8087
  47. -MISCELLANEOUS-
  48. /c compile only, no link
  49. /W<number> warning level
  50. -LINKING-
  51. /F <hex_number> stack size (hex. bytes)
  52. /Lc link compatibility mode executable
  53. /Li incremental linking
  54. /Lr link compatibility mode executable
  55. /Lp link protect mode executable
  56. /link [linker_options_and_libraries]
  57.