install.dos 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. #
  2. # $Id$
  3. #
  4. # Go32 Install file
  5. #
  6. title=Free Pascal Compiler for Go32v2
  7. version=0.99.8
  8. basepath=c:\pp
  9. binsub=\bin\go32v2
  10. ppc386=ppc386
  11. package=basego32.zip,~B~asic system for Go32v2 (required)
  12. package=asldgo32.zip,GNU ~L~inker and GNU Assembler for Go32v2 (required)
  13. package=gdbgo32.zip,GNU ~D~ebugger for Go32v2
  14. package=utilgo32.zip,GNU ~U~tilities (required to recompile run time library)
  15. package=demo.zip,D~e~mos
  16. package=docs-htm.zip,Documentation (~H~TML)
  17. package=rl0998s.zip,~R~un time library sources
  18. package=pp0998s.zip,~C~ompiler sources
  19. package=doc110s.zip,Documentation sources (La~T~eX)
  20. cfgfile=ppc386.cfg
  21. defaultcfg=
  22. #
  23. # Example ppc386.cfg for Free Pascal Compiler Version 0.99.8
  24. #
  25. # ----------------------
  26. # Defines (preprocessor)
  27. # ----------------------
  28. #
  29. # nested #IFNDEF, #IFDEF, #ENDIF, #ELSE, #DEFINE, #UNDEF are allowed
  30. #
  31. # -d is the same as #DEFINE
  32. # -u is the same as #UNDEF
  33. #
  34. # When not m68k is defined at the commandline, define i386
  35. #IFNDEF m68k
  36. #DEFINE i386
  37. #ENDIF
  38. #
  39. # Some examples (for switches see below, and the -? helppages)
  40. #
  41. # Try compiling with the -dRELEASE or -dDEBUG on the commandline
  42. #
  43. # For a release compile with optimizes and strip debuginfo
  44. #IFDEF RELEASE
  45. -OG2p2
  46. -Xs
  47. #WRITE Compiling Release Version
  48. #ENDIF
  49. # For a debug version compile with debuginfo and all codegeneration checks on
  50. #IFDEF DEBUG
  51. -g
  52. -Crtoi
  53. #WRITE Compiling Debug Version
  54. #ENDIF
  55. # ----------------
  56. # Parsing switches
  57. # ----------------
  58. # All assembler blocks are intel styled by default
  59. #-Rintel
  60. # All assembler blocks are AT&T styled by default
  61. #-Ratt
  62. # Semantic checking
  63. # -S2 switch some Delphi 2 extension on
  64. # -Sc supports operators like C (*=,+=,/= and -=)
  65. # -Sg allows LABEL and GOTO
  66. # -Si support C++ stlyed INLINE
  67. # -Sm support macros like C (global)
  68. # -So tries to be TP/BP 7.0 compatible
  69. # -Ss constructor name must be init (destructor must be done)
  70. # -St allows static keyword in objects
  71. # -Sv allow CVAR variable directive
  72. # Allow goto, inline, C-operators, CVar directive
  73. -Sgicv
  74. # ---------------
  75. # Code generation
  76. # ---------------
  77. # Uncomment the next line if you always want static/dynamic units by default
  78. # (can be overruled with -CD, -CS at the commandline)
  79. #-CS
  80. #-CD
  81. # Set the default heapsize to 8Mb
  82. #-Ch8000000
  83. # Set default codegeneration checks (iocheck, overflow, range, stack)
  84. #-Ci
  85. #-Co
  86. #-Cr
  87. #-Ct
  88. # Optimizer switches
  89. # -Og generate smaller code
  90. # -OG generate faster code (default)
  91. # -Or keep certain variables in registers (still BUGGY!!!)
  92. # -Ou enable uncertain optimizations (see docs)
  93. # -O1 level 1 optimizations (quick optimizations)
  94. # -O2 level 2 optimizations (-O1 + slower optimizations)
  95. # -O3 level 3 optimizations (same as -O2u)
  96. # -Op target processor
  97. # -Op1 set target processor to 386/486
  98. # -Op2 set target processor to Pentium/PentiumMMX (tm)
  99. # -Op3 set target processor to PPro/PII/c6x86/K6 (tm)
  100. # Optimize always for Size and Pentium
  101. #-OG2p2
  102. # -----------------------
  103. # Set Filenames and Paths
  104. # -----------------------
  105. # Slashes are also allowed under dos
  106. # path to the messagefile, not necessary anymore but can be used to override
  107. # the default language
  108. #-Fr$1/bin/errore.msg
  109. #-Fr$1/bin/errorn.msg
  110. # path to the gcclib
  111. #-Fg$1/lib
  112. # searchpath for includefiles
  113. #-Fi$1/inc;$1/rtl/inc
  114. # searchpath for units (does the same as -Up)
  115. #IFDEF Go32V1
  116. #IFDEF FPC_LINK_STATIC
  117. -Fu$1/rtl/go32v1/static
  118. #ELSE
  119. -Fu$1/rtl/go32v1
  120. #ENDIF
  121. #ENDIF
  122. #IFDEF Go32V2
  123. #IFDEF FPC_LINK_STATIC
  124. -Fu$1/rtl/go32v2/static
  125. #ELSE
  126. -Fu$1/rtl/go32v2
  127. #ENDIF
  128. #ENDIF
  129. #IFDEF Win32
  130. #IFDEF FPC_LINK_STATIC
  131. -Fu$1/rtl/win32/static
  132. #ELSE
  133. -Fu$1/rtl/win32
  134. #ENDIF
  135. #ENDIF
  136. # searchpath for libraries
  137. #-Fl$1/lib
  138. #-Fl/lib;/usr/lib
  139. # -------------
  140. # Linking
  141. # -------------
  142. # generate always debugging information for GDB (slows down the compiling
  143. # process)
  144. #-g
  145. # always pass an option to the linker
  146. #-k-s
  147. # Always strip debuginfo from the executable
  148. #-Xs
  149. # -------------
  150. # Miscellaneous
  151. # -------------
  152. # Write always a nice FPC logo ;)
  153. -l
  154. # Verbosity
  155. # e : Show errors (default) d : Show debug info
  156. # w : Show warnings u : Show used files
  157. # n : Show notes t : Show tried files
  158. # h : Show hints m : Show defined macros
  159. # i : Show general info p : Show compiled procedures
  160. # l : Show linenumbers c : Show conditionals
  161. # a : Show everything 0 : Show nothing (except errors)
  162. # Display Info, Warnings, Notes and Hints
  163. -viwnh
  164. # If you don't want so much verbosity use
  165. #-vw
  166. #
  167. # That's all folks
  168. #
  169. endcfg