[comp.lang.ada] Help

kanderso@pigalle.ICS.UCI.EDU (Kenneth Anderson) (08/02/90)

I'm not sure if this is the place to post compiler questions but I need some
help. I am developing an Ada project using the Verdix 5.41 compiler. I have
encountered an utterly mystifing compiler error. I had decided to reuse a
software package that I had written before for another project. I moved the
two files (package spec and package body) into my current project's directory
and compiled them. The two files compiled just fine. I then added a with
statement to one of my other packages so that I could reference the new package.
I compiled that one, and it compiled fine. But then I ran into my problem when
I ran a.make to generate a new executable and received this message.

/usr.MC68020/vads5/vads.5.41/bin/a.ld -o pgraphite.exe pgraphite
Undefined:
_exit
_getpid
_mktemp
_stat
_getwd
_unlink
_ftruncate
_close
_open
_errno
_write
_sleep
_read
_lseek
_isatty
_fstat
_gettimeofday
_localtime
_free
_malloc
_sigvec
_sigblock
_sigsetmask

These look like C functions to me!!!!! The package that I added does not
reference any of these functions, so I have no idea how they became
undefined.

Has anyone encountered this problem before?

Please mail responses to kanderso@ics.uci.edu

Thanks in advance,

Ken Anderson