我使用VsCode编译c文件后,应用mingw64,但我有以下错误
c://mingw/bin/../lib/gcc/x86_64-w64-ming32/11.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find _putchar: no such file or directory collect2.exe: error: ld returned 1 exit status
字符串
我试
gcc -Wall -pedantic -Werror -Wextra -std=gnu89 _putchar.c 100-main.c 100-print_times_table.c -o 100-times_table
型
和预期
100-print_times_table.exe
1条答案
按热度按时间kq0g1dla1#
有一个简单的方法可以解决这个问题。你可以将“C/C++”降级到这个版本-v1.8.4。然后vsCode会自动生成配置文件。然后你可以轻松地编译C文件。希望这对你有帮助。