SDL驱动程序在远程Linux上启动调试会话时失败

发布于 2025-01-23 04:59:40 字数 490 浏览 0 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2025-01-30 04:59:40

在项目设置中:

配置属性 - >调试 - >启动前命令 - >导出显示=:0

In Project Settings:

Configuration Properties -> Debugging -> Pre-Launch Command -> export DISPLAY=:0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文