problems with make in cygwin
problems with make in cygwin
(OP)
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:
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?
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?





RE: problems with make in cygwin
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.