install.os2 4.8 KB

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