SDL驱动程序在远程Linux上启动调试会话时失败
在Win10上,我有一个使用SDL2驱动程序的Linux的Visual Studio C ++项目。目标机是虚拟盒-Ubuntu 18.04。
我配置了Visual Studio以在目标系统上进行远程编译,该目标系统正常。 从远程计算机上的控制台运行输出文件显示SDL使用XServer:
SDL_GetCurrentVideoDriver: x11
当我开始从Visual Studio进行调试时(启动GNU调试器GDB在远程侧面):
SDL_Init error: No available video device
SDL_GetCurrentVideoDriver: null
从远程开始启动GDB,无论如何都可以按预期工作:
gdb ./myProgram
(gdb) run
但这不允许我让我我期待的Visual Studio中调试。有什么想法吗?
On Win10, I have a visual studio c++ project for linux that uses the SDL2 driver. The target machine is a VirtualBox - Ubuntu 18.04.
I configured Visual studio to compile remotely on the target system, which works fine.
Running the output file from console on the remote machine shows that SDL uses the XServer:
SDL_GetCurrentVideoDriver: x11
When I start debugging from visual studio (starts GNU debugger gdb on remote side):
SDL_Init error: No available video device
SDL_GetCurrentVideoDriver: null
starting gdb from remote anyway works as expected:
gdb ./myProgram
(gdb) run
But this doesn't let me debug in visual studio, which i'm looking forward to. Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在项目设置中:
配置属性 - >调试 - >启动前命令 - >导出显示=:0
In Project Settings:
Configuration Properties -> Debugging -> Pre-Launch Command -> export DISPLAY=:0