install.dos 5.5 KB

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