Indexing in remote c++ eclipse project does not start - c++

I setup an remote C++ project in Eclipse Version: 2019-12 (4.14.0) using RSE..The project is located in OpenSuse VM and I am connected from windows 10 machine.
Indexing does not start ,without any error. I tried the RDT Remote Fax Indexer without success as well
Thank you

Related

How to write native C++ in VS 2022, using Linux for build and test

I need a native C++ app to make from scratch. It has to run on linux (CentOS). I want to use VS2022 to write and test. I have Hyper-V VM with CentOS.
I tried to google a solution but there are only posts for using WSL.
Can someone please describe steps to connect VS to Linux VM instead of WSL so I can build and run the app on the VM.
This article describes the process: https://devblogs.microsoft.com/cppblog/linux-development-with-c-in-visual-studio/
add workload to the VS using VS Installer (Linux and embedded..)
create project of correct type
add SSH credentials in the project Properties (also can be added/removed/edited in Tools-Options-Cross Platform)

GDBServer wont start on host machine

I migrated from my old Linux Mint to the new Ubuntu 18.04. and doing this I am trying a "newer" version of Eclipse. Therefore I installed Eclipse Photon and set up my remote application debugging like I did for Eclipse 3.8., using the Oselas Toolchain and a CortexA8.
The problem I am facing is, that the GDBServer on the host machine won't start automatically. After a successful connection I have to start it on my own:
Is there any new feature that exits the server immediately after starting?

eclipse CDT create remote project

I'm using Eclipse CDT to create a project on a Debian 7 with RDT up and running. My Eclipse is connected and I can browse the remote filesystem, etc.
According to eclipse's documentation, I can click on "File->New->Remote C++ Project"... BUT that opetion is not available!
Eclipse is:
Eclipse IDE for C/C++ Developers
Version: Luna Service Release 1a (4.4.1)
Build id: 20150109-0600
Running on Mac OSX with Java 1.7
Anyone knows what could be wrong?
Thanks!

C/C++ Eclipse project auto ftp on a unix server in eclipse IDE

I have to write code in C/C++ and upload it to a unix server to run it. I am using eclipse IDE. How can I setup eclipse so that when I click Save the file gets uploaded on the server? I have installed RSE (Remote System Explorer). Now I have the my project locally as well as on the server. I need to synch it.Is there any way to do it?

Problems running remote C++ program in Netbeans

Here is the scenario.
I have a C++ application using CMake that has been setup on Ubuntu server machine. I have setup a remote development interface to it using Netbeans 6.9 on client machine, and I have been able to build it.
The problem is that (as per the setup of CMake script) the executables from the program are going to another directory in the server. When I try to run the program, Netbeans asks me for executables which I can't spot out on client machine (as they are residing on server machine).
Is there a way I can get the executables on local machine OR have a way to give their location to my Netbeans application.
Thanks for your help.