install.dat 6.8 KB

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