Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Re: remote build error

I am trying to do remote build over my server. I have my dev
environment on Linux Fedora 8, and I am trying to do remote build on
Tru64 server. Here is what I did

I mounted an sshfs  share on my dev environment from Tru64.

mkdir /mnt/alpha2
chown shashi:shashi /mnt/alpha2
sshfs c-sgired@alpha2:/u/home/c-sgired/workspace /mnt/alpha2

Then used /mnt/alpha2 as my eclipse workspace directory.

Created a new sample Hello.c make file project with build command as :

ssh c-sgired@alpha2 "cd
/u/home/c-sgired/workspace/sample && make"

The above line doesn't work. If I copy the Hello.c, Makefile to the
root directory and issue command
ssh c-sgired@alpha2 "make" everything works fine.

That means cd command is not working. I tried all variations like cd
workspace cd.. cd workspace\sample etc... None of them worked.

If I do the same thing from console everything works fine.

can you please suggest me with any ideas if you come across this kind
of situation?


Back to the top