remote-debugging

Can StandardSDK 4.0 under EVC++ be used to debug on a remote device?

Deadly 提交于 2019-12-07 19:16:55
问题 I'm running Embedded Visual C++ 4 with service pack 4, to develop an application for a device running CE 5.0. I'm using the CE 5.0 SDK for this purpose, which works fine except for the fact that while it will target my device (i.e. an SH4 based PDA), it will not let me select anything other than the StandardSDK emulator for debugging. If I go to Tools / Configure Platform manager , I can connect to my device under Windows CE default Platform, but I cannot select it from the Build Toolbar for

Unable to connect remotely from other devices + Vorlon

本秂侑毒 提交于 2019-12-07 18:25:28
问题 Vorlon dashboard is not showing all connected devices. I have desktop and installed a Vorlon, I am using localhost of this desktop from laptop or ipad its displays webpage but it is not showing devices in vorlon, but it show if i open from the same desktop. 回答1: I was my bad. I am using localhost:1337 to load vorlon.js. We have to use ip address instead of localhost from other machine 回答2: There can be a few different problems at play here. First you need to find the IP address of the

Qt Creator stdin for command line with Deploy to Remote Linux Host

别来无恙 提交于 2019-12-07 18:14:23
问题 I am using the Remote Deploy feature of Qt Creator to launch my simple command line application on an embedded Linux target board. My test application is extremely simple and asks the user to print his/her name. It crosscompiles, transfers to the board, and launches and the 'Application Output' window near the bottom of Qt Creator shows the 'Type your name:' prompt, but I cannot type anywhere and provide stdin to the application running remotely through Qt Creator. How can I accomplish this

XAMPP 1.7.3, Eclipse PDT & XDebug - Debugging a PHP web page in Eclipse never stops at breakpoints

Deadly 提交于 2019-12-07 17:58:39
My development web server is currently a XAMPP 1.7.3 on my localhost (Win XP). I just set up my Eclipse 3.6 PDT with XDebug . It works fine, if I debug a file as a "PHP script", but when it comes to debugging it as a "PHP web page", XDebug ignores the breakpoints completely. Only a manually inserted xdebug_break() inside the code stops the debugger. This isn't very useful, if you want to use conditions with Eclipse's breakpoints. Here my config: php.ini: zend_extension = "C:\xampp\php\ext\php_xdebug.dll" xdebug.remote_autostart=1 xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote

Is it possible to use gdb to debug remotely over ssh?

痴心易碎 提交于 2019-12-07 16:17:18
问题 Can I debug a program running on a remote target to which I have ssh access, using local source files? Say I've got a program called hello.c, in directory /home/jla/hello on my home machine. And on the remote machine I put this same file in a directory /hello, and compile it with $ gcc -g -o hello hello.c , and then delete the remote hello.c, but leave the executable. Can I then run gdb locally, get it to ssh in to the remote machine to run the executable, but use the local sources as

Visual Studio Remote Debugging Extensibility

爷,独闯天下 提交于 2019-12-07 16:07:06
问题 I'm trying to attach to a remote machine with code similar to the following: Debugger2 db (Debugger2)dte.Debugger; Transport trans = db.Transports.Item("Default"); Process2 proc2 = (Process2)db.GetProcesses(trans, "MACHINENAME").Item("SERVICENAME"); proc2.Attach2(); I've gotten it to work by logging on through remote desktop and manually starting the debugger, but I have to stay logged in. The problem is, I don't want to stay logged into the remote machine. Is there a way to automatically

Visual Studio remote upload and debugging on other computer

大憨熊 提交于 2019-12-07 13:51:24
问题 Is there any way to remotely upload, run and debug an application on another computer? I know you can attach the Visual Studio Remote Debugger to an application running on a remote computer, but I'm looking for a completely automated way of doing it. I'm building a home automation system, and it would be AWESOME if I could get some kind of plugin to visual studio which would let me hit F5 in VS and then the application would just build as normal and be sent to my server PC and run there (with

Remote Debugging Chrome on Android issue

元气小坏坏 提交于 2019-12-07 12:21:28
问题 I am have issues using the remote debugging feature of the Chrome Developers tools with my Android device (LG Nitro running Android version 4.0.4). It was working perfectly several days ago but now my device never appears on the about:inspect page. I have followed and carefully considered these instructions including the troubleshooting tips. I have also searched for the answer to my problem but have not been able to find anything that works. I am using Chrome version 35.0.1916.141 on my

PyDev remote debugging not working (connection refused)

吃可爱长大的小学妹 提交于 2019-12-07 12:06:42
问题 I'm using Eclipse Luna Service Release 1 (4.4.1) with PyDev 3.9.0.201411111611 for Python 2.7 development, on an ArchLinux (Manjaro) machine. I have an external script to run my application from command line, using the import pydevd; pydevd.settrace() template as described in the docs for remote debugging. The full script is as follows: #!/usr/bin/python2 import sys sys.path.append('/home/manu343726/Documentos/myapp/') sys.path.append('/home/manu343726/.eclipse/org.eclipse.platform_4.4.1

PyCharm remote interpreter and Tensorflow -> can not import Cudart.so

天涯浪子 提交于 2019-12-07 10:51:43
问题 I'm using PyCharm for remote debugging, client Win10, server Ubuntu 16. On the Ubuntu machine I have Cuda 8.0 correctly installed, along with python 2.7 and tensorflow 1.0.0. Tensorflow works perfectly from the server (ssh + invoking python, import tensorflow etc..). In PyCharm I set up a remote debugger to my server machine, but now importing tensorflow results in an error: Traceback (most recent call last): File "/home/*****/*****/********/*******.py", line 24, in <module> import tensorflow