I have a server (Ubuntu server 12.04 LTS - no GUI) with a CUDA-capable GPU installed, and a desktop linux (Fedora 18) machine with no CUDA GPU. I would like to develop my code on my desktop machine and compile then debug it on my remote server machine.
To do this I plan to use Nsight 5 Eclipse edition with the C/C++ Remote launch plugin (as in this example http://wiki.eclipse.org/CDT/User/FAQ#How_do_I_debug_a_remote_application.3F). However, even with all the required plugins (C/C++ Remote Launch, RSE) installed in Nsight, I have no choice of 'C/C++ Remote Application' in the available debug configuration of my project.
Is it a limitation of the Nsight Eclipse IDE or am I missing something crucial here?
Nsight 5.0 does not support remote debugging - as this requires special cuda-gdb server software. cuda-gdbserver and Nsight EE remote debugging will be released as a part CUDA toolkit 5.5 (we demoed CUDA Toolkit 5.5 at GTC last week and we are working hard to release it as soon as possible).
Note that our remote debugger connection UI will be slightly different and will not require any Eclipse plugins installed separately.
Update: CUDA Toolkit 5.5 RC (which includes Nsight EE 5.5) is available for download for registered CUDA developers. It includes the remote debug support.
Related
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
I create a virtual machine, Linux Mint 18. But I can't activate the Unity mode.
My system is windows 7 64bit. My vmware version is 12 pro.
The following features have reached end of life in Workstation 12 Pro and have been removed:
Unity mode on Linux guest and host operating systems
Integrated Virtual Debugger Visual Studio
Connection to the VMware vCloud Air subscription service (The VMware vCloud Air OnDemand service is still fully supported)
Here is the page.
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!
i'm a developer working with another developer geographically somewhere else, and we have to build software for mac osx 10.4 and windows xp sp2 and later. right now we each have our own laptops which do not have identical software installations on them, and we have a bunch of other nonrelated software installed.
does there exist some kind of build environment service in the cloud that lets you instantly create a win xp sp2 + mac osx 10.4 virtual machine with developer tools preinstalled that we could use as a "build server" somehow?
http://aws.amazon.com/ec2/vmimport/
We uploaded our build environments - works great.
I am on windows XP want to build the programs on linux remote pc
i have eclipse Ganymede, CDT, RSE installed on remote machine... but how to configure all this?
am I doing correct? could anybody suggest
You could access your remote machine using VNC or similar remote desktop infrastructures. That would allow you to work with Eclipse (edit, build, run, debug, etc) as you would in your local machine.
If bandwidth is too narrow or you don't manage the Linux box, you could access via SSH or telnet and work in console mode (with Emacs/Vim, gdb and all that stuff).
Take a look at https://github.com/ericwoodruff/rmake you would configure your IDE and edit code locally but it uses rsync to build on the remote machine. I've used it at HP to build C++ programs across multiple platforms, linux->windows, windows->linux. It works in the command line and I've used an eclipse builder to invoke it as well. If you enable --no-decorate Eclipse can even parse the build output into the problems view.