install.dos 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. #
  2. # $Id$
  3. #
  4. # Go32v2 Install file
  5. #
  6. title=Free Pascal Compiler 0.99.12b for Go32v2
  7. version=0.99.12b
  8. basepath=c:\pp
  9. binsub=\bin\go32v2
  10. ppc386=ppc386
  11. #
  12. # Binary packages
  13. #
  14. package=basego32.zip,~B~asic system for Go32v2 (required)
  15. package=asldgo32.zip,GNU ~L~inker and GNU Assembler for Go32v2 (required)
  16. package=gdbgo32.zip,GNU ~D~ebugger for Go32v2
  17. package=utilgo32.zip,GNU ~U~tilities (for makefiles)
  18. package=docs-pdf.zip,Documentation (~P~DF)
  19. package=demo.zip,D~e~mos
  20. package=fclgo32.zip,~F~ree Component Library (FCL)
  21. package=fvgo32.zip,Free ~V~ision (FV) and API units
  22. #
  23. # Source packages
  24. #
  25. source=rl09912s.zip,~R~un time library sources
  26. source=pp09912s.zip,~C~ompiler sources
  27. source=fc09912s.zip,~F~ree component library (FCL) sources
  28. source=fv09912s.zip,Free ~V~ision (FV) and API units sources
  29. source=gt09912s.zip,~G~TK interface sources
  30. source=doc160s.zip,Documentation sources (La~T~eX)
  31. cfgfile=ppc386.cfg
  32. defaultcfg=
  33. #
  34. # Example ppc386.cfg for Free Pascal Compiler Version 0.99.12
  35. #
  36. # ----------------------
  37. # Defines (preprocessor)
  38. # ----------------------
  39. #
  40. # nested #IFNDEF, #IFDEF, #ENDIF, #ELSE, #DEFINE, #UNDEF are allowed
  41. #
  42. # -d is the same as #DEFINE
  43. # -u is the same as #UNDEF
  44. #
  45. # When not m68k is defined at the commandline, define i386
  46. #IFNDEF m68k
  47. #DEFINE i386
  48. #ENDIF
  49. #
  50. # Some examples (for switches see below, and the -? helppages)
  51. #
  52. # Try compiling with the -dRELEASE or -dDEBUG on the commandline
  53. #
  54. # For a release compile with optimizes and strip debuginfo
  55. #IFDEF RELEASE
  56. -OG2p2
  57. -Xs
  58. #WRITE Compiling Release Version
  59. #ENDIF
  60. # For a debug version compile with debuginfo and all codegeneration checks on
  61. #IFDEF DEBUG
  62. -g
  63. -Crtoi
  64. #WRITE Compiling Debug Version
  65. #ENDIF
  66. # ----------------
  67. # Parsing switches
  68. # ----------------
  69. # All assembler blocks are intel styled by default
  70. #-Rintel
  71. # All assembler blocks are AT&T styled by default
  72. #-Ratt
  73. # All assembler blocks are directly copied to asm
  74. #-Rdirect
  75. # Semantic checking
  76. # -S2 switch some Delphi 2 extension on
  77. # -Sc supports operators like C (*=,+=,/= and -=)
  78. # -Sg allows LABEL and GOTO
  79. # -Si support C++ stlyed INLINE
  80. # -Sm support macros like C (global)
  81. # -So tries to be TP/BP 7.0 compatible
  82. # -Ss constructor name must be init (destructor must be done)
  83. # -St allows static keyword in objects
  84. # Allow goto, inline, C-operators
  85. -Sgic
  86. # ---------------
  87. # Code generation
  88. # ---------------
  89. # Uncomment the next line if you always want static/dynamic units by default
  90. # (can be overruled with -CD, -CS at the commandline)
  91. #-CS
  92. #-CD
  93. # Set the default heapsize to 8Mb
  94. #-Ch8000000
  95. # Set default codegeneration checks (iocheck, overflow, range, stack)
  96. #-Ci
  97. #-Co
  98. #-Cr
  99. #-Ct
  100. # Optimizer switches
  101. # -Og generate smaller code
  102. # -OG generate faster code (default)
  103. # -Or keep certain variables in registers (still BUGGY!!!)
  104. # -Ou enable uncertain optimizations (see docs)
  105. # -O1 level 1 optimizations (quick optimizations)
  106. # -O2 level 2 optimizations (-O1 + slower optimizations)
  107. # -O3 level 3 optimizations (same as -O2u)
  108. # -Op target processor
  109. # -Op1 set target processor to 386/486
  110. # -Op2 set target processor to Pentium/PentiumMMX (tm)
  111. # -Op3 set target processor to PPro/PII/c6x86/K6 (tm)
  112. # Optimize always for Size and Pentium
  113. #-Og2p2
  114. # -----------------------
  115. # Set Filenames and Paths
  116. # -----------------------
  117. # Both slashes and backslashes are allowed in paths
  118. # path to the messagefile, not necessary anymore but can be used to override
  119. # the default language
  120. #-Fr$1/msg/errore.msg
  121. #-Fr$1/msg/errorn.msg
  122. #-Fr$1/msg/errores.msg
  123. #-Fr$1/msg/errord.msg
  124. #-Fr$1/msg/errorr.msg
  125. # path to the gcclib
  126. #-Fl$1/lib
  127. # searchpath for includefiles
  128. -Fi$1/source/rtl/inc;$1/source/rtl/i386
  129. # searchpath for objectfiles
  130. #-Fo$1/source/rtl/inc;$1/source/rtl/i386
  131. # searchpath for units and other system dependent things
  132. #IFDEF Go32V1
  133. -FD$1/bin/go32v1
  134. #IFDEF FPC_LINK_STATIC
  135. -Fu$1/rtl/go32v1/static
  136. -Fu$1/units/go32v1/static
  137. #ENDIF
  138. -Fu$1/rtl/go32v1
  139. -Fu$1/units/go32v1
  140. -Fu$1/source/rtl/go32v1
  141. -Fi$1/source/rtl/go32v1
  142. -Fo$1/source/rtl/go32v1
  143. #ENDIF
  144. #IFDEF Go32V2
  145. -FD$1/bin/go32v2
  146. #IFDEF FPC_LINK_STATIC
  147. -Fu$1/rtl/go32v2/static
  148. -Fu$1/units/go32v2/static
  149. #ENDIF
  150. -Fu$1/rtl/go32v2
  151. -Fu$1/units/go32v2
  152. -Fu$1/source/rtl/go32v2
  153. -Fi$1/source/rtl/go32v2
  154. -Fo$1/source/rtl/go32v2
  155. #ENDIF
  156. #IFDEF Win32
  157. -FD$1/bin/win32
  158. #IFDEF FPC_LINK_STATIC
  159. -Fu$1/rtl/win32/static
  160. -Fu$1/units/win32/static
  161. #ENDIF
  162. -Fu$1/rtl/win32
  163. -Fu$1/units/win32
  164. -Fu$1/source/rtl/win32
  165. -Fi$1/source/rtl/win32
  166. -Fo$1/source/rtl/win32
  167. #ENDIF
  168. #IFDEF OS2
  169. -FD$1/bin/os2
  170. #IFDEF FPC_LINK_STATIC
  171. -Fu$1/rtl/os2/static
  172. -Fu$1/units/os2/static
  173. #ENDIF
  174. -Fu$1/rtl/os2
  175. -Fu$1/units/os2
  176. -Fu$1/source/rtl/os2
  177. -Fi$1/source/rtl/os2
  178. -Fo$1/source/rtl/os2
  179. #ENDIF
  180. #IFDEF Linux
  181. # For statically, smartlinked units
  182. #IFDEF FPC_LINK_STATIC
  183. -Fu$1/rtl/static
  184. -Fu$1/units/static
  185. #ENDIF
  186. # For Dynamically linked units
  187. #IFDEF FPC_LINK_DYNAMIC
  188. -Fu$1/rtl/shared
  189. -Fu$1/units/shared
  190. #ENDIF
  191. -Fu$1/rtl/linux
  192. -Fu$1/units/linux
  193. -Fu$1/source/rtl/linux
  194. -Fi$1/source/rtl/linux
  195. -Fo$1/source/rtl/linux
  196. #-Fu~/pp/units;~/pp/rtl/linux
  197. #-Fu/usr/lib/fpc/0.99.12/units;/usr/lib/fpc/0.99.12/rtl
  198. #ENDIF
  199. # searchpath for libraries
  200. #-Fl$1/lib
  201. #-Fl/lib;/usr/lib
  202. # -------------
  203. # Linking
  204. # -------------
  205. # generate always debugging information for GDB (slows down the compiling
  206. # process)
  207. #-g
  208. # always pass an option to the linker
  209. #-k-s
  210. # Always strip debuginfo from the executable
  211. -Xs
  212. # -------------
  213. # Miscellaneous
  214. # -------------
  215. # Write always a nice FPC logo ;)
  216. -l
  217. # Verbosity
  218. # e : Show errors (default) d : Show debug info
  219. # w : Show warnings u : Show used files
  220. # n : Show notes t : Show tried files
  221. # h : Show hints m : Show defined macros
  222. # i : Show general info p : Show compiled procedures
  223. # l : Show linenumbers c : Show conditionals
  224. # a : Show everything 0 : Show nothing (except errors)
  225. # Display Info, Warnings, Notes and Hints
  226. -viwnh
  227. # If you don't want so much verbosity use
  228. #-vw
  229. #
  230. # That's all folks
  231. #
  232. endcfg