gpt4 book ai didi

c++ - SDL libsdl1.2-dev

转载 作者:行者123 更新时间:2023-11-30 16:19:18 24 4
gpt4 key购买 nike

当我尝试加载 SDL libsdl1.2-dev 库时遇到问题。它被我的 ide (Clion) 识别,但是当尝试编译它时:

编译结果为:

    main.c:(.text+0x15): undefined reference to `SDL_Init'

当然退出也是如此,

#include <stdlib.h>
#include <stdio.h>
#include <SDL/SDL.h>

int main(int argc, char *argv[])
{
SDL_Init(SDL_INIT_VIDEO);
SDL_Quit();
exit(EXIT_SUCCESS);
}

我正在使用 Windows ubuntu 子系统,我给自己不到 2 小时的时间来创建俄罗斯方 block 。

最佳答案

这样就可以了

gcc -c -Wall -Wextra main.c `sdl-config --cflags`
gcc -o executable main.o `sdl-config --libs`

但是即使在WLS上使用xming也没有显示

关于c++ - SDL libsdl1.2-dev,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55661577/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com