home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c040 / 5.ddi / QCL.MS$ / QCL.bin
Encoding:
Text File  |  1990-02-26  |  1.8 KB  |  68 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. /AH huge model
  8. /AT tiny model (.COM files)
  9. -OPTIMIZATION-
  10. /O enable optimization (same as /Ot)
  11. /Od disable optimizations
  12. /Ol enable loop optimizations
  13. /Ot optimize for speed
  14. /Ox max. optimization (/Olt /Gs)
  15. -CODE GENERATION-
  16. /G0 8086 instructions (default)
  17. /G1  186 instructions
  18. /G2  286 instructions
  19. /Gc Pascal style function calls
  20. /Gi incremental compilation
  21. /Gr _fastcall type calls
  22. /Gs no stack checking
  23. /Gt[number] data size threshold
  24. /ND <data segment name>
  25. /NT <text segment name>
  26. -OUTPUT FILES-
  27. /Fe<executable file>
  28. /Fm[map file]
  29. /Fo<object file>
  30. -PREPROCESSOR-
  31. /C don't strip comments
  32. /D<name>[=text] define macro
  33. /E preprocess to stdout
  34. /EP same as /E but no #line
  35. /I<name> add #include path
  36. /P preprocess to file
  37. /U<name> remove predefined macro
  38. /u remove all predefined macros
  39. /X ignore "standard places"
  40. -LANGUAGE-
  41. /Za disable extensions
  42. /Zd line number information
  43. /Ze enable extensions (default)
  44. /Zi symbolic debugging information
  45. /Zl remove default library info
  46. /Zp[n] pack structs on n-byte boundary
  47. /Zr enable pointer checking
  48. /Zs syntax check only
  49. -FLOATING POINT-
  50. /FPi inline with emulator (default)
  51. /FPi87 inline with 8087
  52. -MISCELLANEOUS-
  53. /batch no interactive prompts
  54. /c compile only, no link
  55. /J default char type is unsigned
  56. /nologo no sign-on message
  57. /Tc<file> compile file without .c
  58. /V<string> set version string
  59. /W<number> warning level
  60. -MASM SUPPORT-
  61. /Ta<file> assemble file without .asm
  62. -LINKING-
  63. /F <hex_number> stack size (hex. bytes)
  64. /link [linker_options_and_libraries]
  65. /Lc link compatibility mode executable
  66. /Ln link without C Startup Code
  67. /Lr link compatibility mode executable
  68.