From: garyg AT southeast DOT net (Gary M. Greenberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: ENOENT? what's that? Date: Sat, 29 Mar 1997 03:25:33 GMT Organization: /* NOT REACHED */ Lines: 26 Message-ID: <5hi2et$c0d@news.southeast.net> References: <01bc3ba4$e1da80c0$260b1d26 AT ghost DOT artnet DOT net> NNTP-Posting-Host: ts6-015.southeast.net To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp In article <01bc3ba4$e1da80c0$260b1d26 AT ghost DOT artnet DOT net>, "Sean L. Palmer" wrote: > I got a strange error while compiling today: > > compiling: Actor.cpp > Actor.cc.sched : No such file or directory (ENOENT) > There were some errors > > I looked all over for ENOENT, tried making it in lots of places, looked in > the config files, project includes, source, everywhere, can't figure out > what the heck it is. cd C:/djgpp/include grep -l ENOENT *.h produces "errno.h" and ENOENT is a manifest constant. More than likely it's "Entry not found." I was getting ENOENT from a make file with long file names. And, the name you're using (actor.cc.sched) might be causing that. Make it 8.3 and see if the error goes away (someone else probably knows the correct way to fix this, but a kludge is better than no compilation). Cheers, gary /* the Sorcerer's Apprentice */ The C Programmer's Reference is online at: http://users.southeast.net/~garyg/index.html