Creating from Eclipse on Windows on a Linux build server

Settings: - Eclipse Juno runs on Windows 7 - GNU toolkit located on the Linux build server - ClearCase repository available from the Windows 7 computer and the Linux build server

I want to open a C ++ project from Eclipse on Windows and create a project on a remote Linux build server. What is the best way to do this now in 2013 with the state of development of Eclipse?

(There were some dated questions with partial solutions.)

+4
source share
1 answer

You will need to make a snapshot view directly on the linux path, which is possible through samba: your Windows server will be used for view_server.exe , but the root directory of your snapshot will be on Linux.

This leaves you with the problem of running the gnu toolkit from Linux from your Windows session. This is discussed in this 2011 thread .

Basically add a new < Remote Builder option for managed build projects.
Like Internal Builder , but it will invoke compilation commands through SSH or any protocol that the user has selected.

This will be RMB (Remote Managed Build), as in a Remote Building .

+2
source

All Articles