Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-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
Joined
Feb 1, 2002
Messages
2
Location
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?
 
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.

Part and Inventory Search

Sponsor

Back
Top