NOTES.OS2
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:8k
源码类别:

编译器/解释器

开发平台:

Others

  1. 14 April 94
  2. Version 1.20 of pccts
  3. At the moment this help file is available via anonymous FTP at
  4.         Node: marvin.ecn.purdue.edu
  5.         File: pub/pccts/1.20/NOTES.OS2
  6. Mail corrections or additions to Steve Robenalt <steve@molly.dny.rockwell.com>
  7. ===============================================================================
  8. Notes on building PCCTS under OS/2 2.X with the C Set compilers.
  9. The supplied makefiles can be used to build PCCTS under OS/2 with minimal
  10. trouble. First you need to edit the makefiles such that the Unix specific
  11. defaults are commented out, then uncomment the lines which are specific
  12. to OS/2 and C Set/2 compilers as originally set up by Ed Harfmann. Note
  13. also that you need to use the target list which reflects the appropriate
  14. naming conventions. Some of the lines now need to be changed to reflect
  15. differences in conventions between the operating systems: 1) change forward
  16. slashes in directories to backslashes, 2) change command line parameters
  17. from -option to /option (note that this applies to C Set, not ANTLR and DLG
  18. options), and 3) change rm to del for clean and scrub targets.
  19. To build ANTLR for the first time:
  20. note: I tried various combinations of "touch"ing files to try to prevent nmake
  21.       from using ANTLR to rebuild itself, and was unsuccessful.
  22. In the section labelled "Target list of PC machines", comment out the
  23. scan.c and antlr.c dependencies. This prevents nmake from trying to invoke
  24. ANTLR to build itself. After you have built ANTLR successfully for the first
  25. time, you can uncomment these lines and it will build itself normally. (If you
  26. had a working 1.10 installation before, you can also use the older binaries
  27. when building the new ones.)
  28. An example of the resulting makefile, with all the extra baggage for Unix, DOS,
  29. and OS/2 1.X is shown here:
  30. ----- cut here -----
  31. #
  32. # Makefile for ANTLR 1.20
  33. #
  34. # SOFTWARE RIGHTS
  35. #
  36. # We reserve no LEGAL rights to the Purdue Compiler Construction Tool
  37. # Set (PCCTS) -- PCCTS is in the public domain.  An individual or
  38. # company may do whatever they wish with source code distributed with
  39. # PCCTS or the code generated by PCCTS, including the incorporation of
  40. # PCCTS, or its output, into commerical software.
  41. # We encourage users to develop software with PCCTS.  However, we do ask
  42. # that credit is given to us for developing PCCTS.  By "credit",
  43. # we mean that if you incorporate our source code into one of your
  44. # programs (commercial product, research project, or otherwise) that you
  45. # acknowledge this fact somewhere in the documentation, research report,
  46. # etc...  If you like PCCTS and have developed a nice tool with the
  47. # output, please mention that you developed it using PCCTS.  In
  48. # addition, we ask that this header remain intact in our source code.
  49. # As long as these guidelines are kept, we expect to continue enhancing
  50. # this system and expect to make other tools available as they are
  51. # completed.
  52. #
  53. # ANTLR 1.20
  54. # Terence Parr
  55. # Purdue University
  56. # With AHPCRC, University of Minnesota
  57. # 1989-1994
  58. #
  59. # Ported to Borland C++, IBM C-Set/2 and Microsoft 6.0 by
  60. # Ed Harfmann
  61. # Micro Data Base Systems
  62. # Lafayette, Indiana
  63. # - With updates by Steve Robenalt 4/94
  64. #
  65. SET=..supportset
  66. PCCTS_H=..h
  67. #
  68. # C-Set/2 for OS/2
  69. #
  70. CC=icc
  71. CFLAGS= /I. /I$(SET) /I$(PCCTS_H) /Sa /W3 /DUSER_ZZSYN
  72. OUT_OBJ = /Fo
  73. LIBS=
  74. ANTLR=..binantlr
  75. DLG=..bindlg
  76. OBJ_EXT = obj
  77. antlr.exe: antlr.obj scan.obj err.obj bits.obj build.obj fset2.obj 
  78.         fset.obj gen.obj globals.obj hash.obj lex.obj main.obj 
  79.         misc.obj set.obj pred.obj dialog.obj
  80.         link386 @<<
  81. $** /NOI
  82. $@ /STACK:32768
  83. $(LIBS: = +^
  84. )
  85. $(DEF_FILE) $(LFLAGS) ;
  86. <<
  87.         copy *.exe ..bin
  88. #
  89. # *********** Target list of PC machines ***********
  90. #
  91. # Don't worry about the ambiguity messages coming from antlr
  92. # for making antlr.c etc...  [should be 10 of them, I think]
  93. #
  94. #antlr.c stdpccts.h parser.dlg tokens.h err.c : antlr.g
  95. # $(ANTLR) antlr.g
  96. antlr.$(OBJ_EXT): antlr.c mode.h tokens.h
  97. scan.$(OBJ_EXT): scan.c mode.h tokens.h
  98. #scan.c mode.h: parser.dlg
  99. # $(DLG) -C2 parser.dlg scan.c
  100. set.$(OBJ_EXT): $(SET)set.c
  101. $(CC) $(CFLAGS) /C $(OUT_OBJ)set.$(OBJ_EXT) $(SET)set.c
  102. #
  103. # what files does PCCTS generate (both ANTLR and DLG)
  104. #
  105. PCCTS_GEN=antlr.c scan.c err.c tokens.h mode.h parser.dlg stdpccts.h remap.h
  106. SRC=antlr.c scan.c err.c bits.c build.c fset2.c fset.c gen.c globals.c 
  107. hash.c lex.c main.c misc.c $(SET)set.c pred.c dialog.c
  108. #
  109. # ****** These next targets are common to UNIX and PC world ********
  110. #
  111. #clean up all the intermediate files
  112. clean:
  113. del *.$(OBJ_EXT) 
  114. #remove everything in clean plus the PCCTS files generated
  115. scrub:
  116. del $(PCCTS_GEN) *.$(OBJ_EXT) 
  117. ----- cut here -----
  118. To build DLG for the first time:
  119. Follow the same steps as were used to build ANTLR, changing the slashes and
  120. commands, targets, and extensions for OS/2. Comment out the dependencies for
  121. dlg_p.c and dlg_a.c to prevent nmake from trying to invoke ANTLR and DLG to
  122. build DLG (unless you have 1.10 binaries).
  123. An example of the resulting makefile, with all the extra baggage for Unix, DOS,
  124. and OS/2 1.X is shown here:
  125. ----- cut here -----
  126. #
  127. # Makefile for DLG 1.20
  128. # Terence Parr
  129. # Purdue University
  130. # 1989-1993
  131. #
  132. # Ported to IBM C-Set/2 and Microsoft 6.0 by
  133. # Ed Harfmann
  134. # Micro Data Base Systems
  135. # Lafayette, Indiana
  136. # - With updates by Steve Robenalt 4/94
  137. #
  138. SET=..supportset
  139. PCCTS_H=..h
  140. #
  141. # C-Set/2 for OS/2
  142. #
  143. CC=icc
  144. CFLAGS= /I. /I$(SET) /I$(PCCTS_H) /Sa /W3
  145. OUT_OBJ = /Fo
  146. LIBS=
  147. ANTLR=..binantlr
  148. DLG=..bindlg
  149. OBJ_EXT=obj
  150. dlg.exe : dlg_p.obj dlg_a.obj main.obj err.obj set.obj support.obj 
  151.         output.obj relabel.obj automata.obj
  152.         link386 @<<
  153. $** /NOI
  154. $@ /STACK:32768
  155. $(LIBS: = +^
  156. )
  157. $(DEF_FILE) $(LFLAGS) ;
  158. <<
  159.         copy *.exe ..bin
  160. SRC = dlg_p.c dlg_a.c main.c err.c $(SET)set.c support.c output.c 
  161.         relabel.c automata.c
  162. #dlg_p.c parser.dlg err.c tokens.h : dlg_p.g
  163. # $(ANTLR) dlg_p.g
  164. #dlg_a.c mode.h : parser.dlg
  165. # $(DLG) -C2 parser.dlg dlg_a.c
  166. dlg_p.$(OBJ_EXT) : dlg_p.c dlg.h tokens.h mode.h
  167. $(CC) $(CFLAGS) /c dlg_p.c
  168. dlg_a.$(OBJ_EXT) : dlg_a.c dlg.h tokens.h mode.h
  169. $(CC) $(CFLAGS) /c dlg_a.c
  170. main.$(OBJ_EXT) : main.c dlg.h
  171. $(CC) $(CFLAGS) /c main.c
  172. set.$(OBJ_EXT) : $(SET)set.c
  173. $(CC) /c $(CFLAGS) $(SET)set.c
  174. lint:
  175. lint *.c
  176. #clean up all the intermediate files
  177. clean:
  178. del *.$(OBJ_EXT) 
  179. ----- cut here -----
  180. Once you have built ANTLR and DLG successfully, you will also want to build
  181. the genmk utility, located at ~pcctssupportgenmk. The makefile in this 
  182. directory is relatively simple to modify, so I won't repeat it here.
  183. At this point, you can test the executables by building one of the sample
  184. programs, such as the Pascal or C example under ~pcctslang. The prototype
  185. makefile which is in these directories will work fine as a base, with OS/2
  186. specific modifications as noted above. Note that the /Sa flag defines the
  187. ANSI C mode of the compiler which is not the default. The default mode
  188. does not define __STDC__ and will lead to lots of errors.
  189. A sample pascal makefile is shown below:
  190. ----- cut here -----
  191. GRM =pascal.g
  192. LEX_FILE =pscan.dlg
  193. GSRC=pascal.c err.c pscan.c ttree.c adebug.c
  194. GOBJ=pascal.obj err.obj pscan.obj ttree.obj adebug.obj
  195. PCCTS_GEN= pascal.c err.c $(LEX_FILE) pscan.c mode.h tokens.h
  196. SRC =$(GSRC) pmain.c sym.c
  197. OBJ =$(GOBJ) pmain.obj sym.obj
  198. INCL = ....h
  199. SYM = ....supportsym
  200. ANTLR = ....binantlr
  201. DLG = ....bindlg
  202. CFLAGS=/I. /I$(INCL) /Sa
  203. AFLAGS= -fl $(LEX_FILE) -gh
  204. pascal.exe : $(OBJ)
  205. $(CC) $(CFLAGS) /Fopascal.exe $(OBJ)
  206. pascal.c $(LEX_FILE) : $(GRM)
  207. $(ANTLR) $(AFLAGS) $(GRM)
  208. mode.h pscan.c : $(LEX_FILE)
  209. $(DLG) -C2 $(LEX_FILE) pscan.c
  210. pmain.obj : pmain.c pascal.h
  211. pascal.obj : pascal.c mode.h tokens.h
  212. sym.obj : $(SYM)sym.c
  213. icc /c /Fo sym.obj $(CFLAGS) $(SYM)sym.c
  214. err.obj : err.c
  215. clean:
  216. del $(PCCTS_GEN) *.obj
  217. ----- cut here -----
  218. The C example can be built in much the same way.
  219. If you have problems compiling anything, I would appreciate hearing about
  220. it. I was able to get everything built and working without changing any
  221. of the supplied or generated C code, so if you find that you need to make
  222. changes to any code, I've probably written something up incorrectly.
  223. Please post comments to the mailing list for PCCTS at:
  224. pccts-users@ahpcrc.umn.edu
  225. since I am most likely to see them there.
  226. - Steve Robenalt