install.dat 6.8 KB

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