From: David E. <de...@ar...> - 2001-08-25 05:56:11
|
At 02:36 PM 24/08/01 -0700, Scott Snider wrote: >I am very new to the list. I hope it is not in bad >taste to post a small non working program in it's >entirety. if it is please tell me and I will not do it >again. > >OK here goes my problem. I wrote a tiny program (see >below) and it will not compile. I have rid it of all >the stupid errors like typos and easily found bad code. >I however do not under stand the compile errors. if >you would like a screen print of them please e-mail >me. > ... I have no problem compiling your program, using TC release 0.54. make test01a htcobol -P -D -I../copybooks -I. test01a.cob as -D -o test01a.o -a=test01a.listing.0.txt test01a.s gcc -g -o test01a test01a.o -L/usr/local/lib -lhtcobol -ldb -lm Perhaps you neglected to add the db library, which is required for all file IO. David Essex |