2
0

install.os2 6.0 KB

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