install.dos 4.5 KB

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