Operating System - HP-UX
1833323 Members
2765 Online
110051 Solutions
New Discussion

Re: internal error with aCC: can't find ctcom

 
SOLVED
Go to solution
Dan Powell_4
New Member

internal error with aCC: can't find ctcom

Using version A.03.25 of aCC on HP-11, a compilation is returning the following error:

/opt/aCC/bin/aCC -I/sockets/include -D_REENTRANT -D_THREAD_SAFE -g -o ../HP-UX11/obj/initool.o -c initool.cpp
aCC: internal error 1901: cannot exec /net/case/home/CC/sun4/lbin/ctcom: 2 (No such file or directory)

It appears to be environment related; I don't get the error, but someone else does.

Any help would be appreciated.

Thanks,

Dan
4 REPLIES 4
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: internal error with aCC: can't find ctcom

ctcom should be located in /opt/aCC/lbin. The /net/case/... stuff looks very much like an automounted filesystem gone awry. Do an 'env' on the bad instance and compare that env to a good one.
If it ain't broke, I can fix that.
Vitek Pepas
Valued Contributor

Re: internal error with aCC: can't find ctcom

The path to ctcom file indicates it is located in remote filesystem. Make sure "someone else" has sufficient permissions to access and execute the file.
ranganath ramachandra
Esteemed Contributor

Re: internal error with aCC: can't find ctcom

check environment variables PATH and ST_CTCOM.
 
--
ranga
hp-ux 11i v3[i work for hpe]

Accept or Kudo

Dan Powell_4
New Member

Re: internal error with aCC: can't find ctcom

Thanks everybody for the replies. I finally found it. The individual had defined CCROOTDIR in his .cshrc. An unsetenv took care of it.

Dan