install.dat 6.7 KB

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