Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problems with make in cygwin

Status
Not open for further replies.

belsonc

Computer
Feb 1, 2002
2
0
0
US
ok, I'm working on trying to get PalmOS code to compile, or more specifically, make under cygwin, and it's giving me an error message that I don't know what to do with:
Code:
Administrator@VAIO /MyProject
$ make
( cd GCC/; rm *.bin; pilrc -I ../Src/ ../Src/Resources.rcp)
rm: cannot remove `*.bin': No such file or directory
pilrc: not found
make: *** [GCC/bin.stamp] Error 127

Administrator@VAIO /MyProject
$

any ideas?
 
Replies continue below

Recommended for you

Hi belsonc!

The line you sent shows the following commands executed one after the other:

cd GCC/
rm *.bin
pilrc -I ../Src/ ../Src/Resources.rcp

There is no *.bin files in GCC directory (probably just a warning output by rm function)
pilrc executable file is not found. Where is this executable? I don't know; you have to figure that out on your machine.

It seems the problem is not related to make, but to "pilrc" which is not found in the PATH environment variable.
 
Status
Not open for further replies.
Back
Top