在我的系统上,当运行以下使用 clang 或 gcc 编译的 C++ 代码片段时
#include <cstdio>
#include <SDL2/SDL.h>
int main(int argc, char** args)
{
printf("Hi");
SDL_Init(SDL_INIT_VIDEO);
SDL_CreateWindow("", 0, 0, 800, 600, 0);
printf("Bye");
}
然后我在运行时得到以下输出
process 9360: arguments to dbus_connection_open_private() were incorrect, assertion "address != NULL" failed in file dbus-connection.c line 2664.
This is normally a bug in some application using the D-Bus library.
D-Bus not built with -rdynamic so unable to print a backtrace
Hi
当我尝试编译和运行在另一台机器上运行的 SDL2 代码时,我遇到了同样的问题,尽管如果在该机器上编译了二进制文件,则可以运行它。这让我相信这是这台机器的问题。
我正在运行 Antergos Linux,应该使用最新版本的 SDL2 和 D-Bus(我通过 pacman 定期运行更新)。我将不胜感激任何帮助,并很乐意回答任何进一步的问题,谢谢。