gpt4 book ai didi

visual-c++ - 获取错误 LNK2019 : unresolved external symbol when compiling SDL2 code in Windows using MSVC

转载 作者:行者123 更新时间:2023-12-04 10:08:32 24 4
gpt4 key购买 nike

完整的错误输出:

SDL2main.lib(SDL_windows_main.obj) : error LNK2019: unresolved external symbol __imp_CommandLineToArgvW referenced in function main_getcmdline

我的编译器选项:
cl -D WINDOWS -nologo -W4 -WX -wd4100 -Fe"output_file.exe" input_file.c SDL2.lib SDL2main.lib -I ./SDL2-2.0.12/include -link -LIBPATH:./SDL2-2.0.12/lib/x64 -SUBSYSTEM:CONSOLE

我的 input_file.c标题和主要功能:
#ifdef LINUX
#include <SDL2/SDL.h> /* Comes with stdio.h and stdlib.h */
#elif WINDOWS
#include <stdio.h>
#include "SDL.h"
#endif

int main(int argc, char* argv[]) {
if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_AUDIO|SDL_INIT_TIMER) != 0)
{
fprintf(stderr, "Failed to initialize SDL: %s\n", SDL_GetError());
return -1;
}

. . .

命令行参数中使用的 SDL 开发文件夹是从 libsdl.org 下载的开发库 zip 文件

为什么我收到这个错误?

最佳答案

您还需要使用名为“shell32.lib”的库cl -D WINDOWS -nologo -W4 -WX -wd4100 -Fe"output_file.exe" input_file.c shell32.lib SDL2.lib SDL2main.lib -I ./SDL2-2.0.12/include -link -LIBPATH:./SDL2-2.0.12/lib/x64 -SUBSYSTEM:CONSOLE

关于visual-c++ - 获取错误 LNK2019 : unresolved external symbol when compiling SDL2 code in Windows using MSVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61449854/

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