chart.tex 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. \documentclass{article}
  2. \usepackage{a4}
  3. \setlength{\oddsidemargin}{20pt}
  4. \addtolength{\textwidth}{39pt}
  5. \newcommand{\var}[1]{{\texttt #1}}
  6. \usepackage{tabularx}
  7. \begin{document}
  8. \section*{Compiler options and command-line switches}
  9. \subsection*{Local compiler switches}
  10. %\begin{table}
  11. %\caption[b]{Local compiler switches.}
  12. \begin{tabularx}{\textwidth}{lllX}
  13. \textbf{cmd} & \textbf {short} & \textbf {long} & \textbf{explanation }\\ \hline
  14. & \var{\$A} & \var{\$ALIGN} & Align Data.\\
  15. A & & \var{\$ASMMODE} & Select assembler mode. \\
  16. &\var{\$B} & \var{\$BOOLEVAL} & Use complete boolean evaluation. \\
  17. Sa &\var{\$C} & \var{\$ASSERTIONS} & Enable assertion support. \\
  18. d && \var{\$DEFINE} & Define a symbol. \\
  19. && \var{\$ELSE} & Switch conditional compilation. \\
  20. && \var{\$ENDIF} & End conditional compilation. \\
  21. && \var{\$ERROR} & Generate error message. \\
  22. &\var{\$F} & & Use far or near functions. \\
  23. && \var{\$FATAL} & Generate fatal error message. \\
  24. Sg && \var{\$GOTO} & Support \var{Goto} and \var{Label}. \\
  25. &\var{\$H} & \var{\$LONGSTRINGS} & Use AnsiStrings. \\
  26. && \var{\$HINT} & Generate hint message. \\
  27. vh && \var{\$HINTS} & Emit hints \\
  28. && \var{\$IF} & Start conditional compilation. \\
  29. && \var{\$IFDEF} & Start conditional compilation. \\
  30. && \var{\$IFNDEF} & Start conditional compilation. \\
  31. && \var{\$IFOPT} & Start conditional compilation. \\
  32. && \var{\$INFO} & Generate info message. \\
  33. Si && \var{\$INLINE} & Enable inline code support. \\
  34. Ci &\var{\$I} & \var{\$IOCHECKS} & Include Input/Output checking. \\
  35. &\var{\$I} & \var{\$INCLUDE} & Include file. \\
  36. &\var{\$I} & \var{\$INCLUDE} & Include compiler info. \\
  37. &\var{\$L} & \var{\$LINK} & Link object file. \\
  38. && \var{\$LINKLIB} & Link to a library. \\
  39. &\var{\$M} & \var{\$TYPEINFO} & Generate Run-Time type information. \\
  40. Sm && \var{\$MACRO} & Enable macro support. \\
  41. && \var{\$MESSAGE} & Generate info message. \\
  42. && \var{\$MMX} & Enable Intel MMX support. \\
  43. && \var{\$NOTE} & Generate note message. \\
  44. vn && \var{\$NOTES} & Emit notes. \\
  45. A && \var{\$OUTPUT\_FORMAT} & Select compiler output format. \\
  46. &\var{\$P} & \var{\$OPENSTRINGS} & Use open strings. \\
  47. && \var{\$PACKENUM} & Specify minimum enumeration type size. \\
  48. && \var{\$PACKRECORDS} & Specify Alignment of record elements. \\
  49. Co &\var{\$Q} & \var{\$OVERFLOWCHECKS}& Use overflow checking. \\
  50. Cr &\var{\$R} & \var{\$RANGECHECKS} & Use range checking. \\
  51. && \var{\$SATURATION} & Enable saturation operations. \\
  52. XX && \var{\$SMARTLINK} & Use smartlinking. \\
  53. St && \var{\$STATIC} & Enable use of \var{Static} keyword. \\
  54. && \var{\$STOP} & Generate fatal error message. \\
  55. &\var{\$T} & \var{\$TYPEDADDRESS} & Enable typed address operator. \\
  56. u && \var{\$UNDEF} & Undefine a symbol. \\
  57. &\var{\$V} & \var{\$VARSTRINGCHECKS} & Use strict var-string checking. \\
  58. && \var{\$WAIT} & Wait for enter key press. \\
  59. && \var{\$WARNING} & Generate warning message. \\
  60. && \var{\$WARNINGS} & Emit warnings. \\
  61. &\var{\$X} & \var{\$EXTENDEDSYNTAX} & Enable use of extended syntax. \\ \hline
  62. \end{tabularx}
  63. %\end{table}
  64. \subsection*{Global compiler switches}
  65. %\begin{table}
  66. %\caption{Global compiler switches}
  67. \begin{tabularx}{\textwidth}{lllX}
  68. \textbf{cmd} & \textbf {short} & \textbf {long} & \textbf{explanation }\\ \hline
  69. & & \var{\$APPTYPE} & Specify type of application (Win32 only) \\
  70. g& \var{\$D} & \var{\$DEBUGINFO} & Include debugging symbols. \\
  71. & & \var{\$DESCRIPTION} & Not supported. \\
  72. &\var{\$E} & & Enable emulation of coprocessor. \\
  73. & & \var{\$G} & Generate 80286 code. \\
  74. Fi& & \var{\$INCLUDEPATH} & Specify include file search path. \\
  75. &\var{\$L} & \var{\$LOCALSYMBOLS} & Enable local symbol information. \\
  76. Fl& & \var{\$LIBRARYPATH} & Specify library search path. \\
  77. &\var{\$M} & \var{\$MEMORY} & Specify memory sizes. \\
  78. M& & \var{\$MODE} & Specify compiler compatibility mode. \\
  79. & & \var{\$N} & Enable numeric processing. \\
  80. & & \var{\$O} & Enable overlay code generation. \\
  81. Fo& & \var{\$OBJECTPATH} & Specify object file search path. \\
  82. Ct& \var{\$S} & & Use stack checking \\
  83. Fu& & \var{\$UNITPATH} & Specify unit file search path. \\
  84. & \var{\$W} & \var{\$STACKFRAMES} & Generate stackframes. \\
  85. b & \var{\$Y} & \var{\$REFERENCEINFO} & Insert browser information. \\ \hline
  86. \end{tabularx}
  87. %\end{table}
  88. \end{document}