gpt4 book ai didi

c - mingw32-gcc.exe : error: F: No such file or directory

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

我什至无法在代码块中编译 hello world。代码是对的,我在linux下试过了,效果很好。但我找不到问题所在,请帮忙。

错误

mingw32-gcc.exe -Wall -O2 F -c
C:\Users\K\Desktop\FOLDER\main.c -o obj\Release\main.o mingw32-gcc.exe: error: F: No such file or directory Process terminated with status 1 (0 minute(s), 0 second(s)) 1 error(s), 0 warning(s) (0 minute(s), 0 second(s))

代码

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

int main()
{
printf(
"Hello world!\n");
return 0;
}

最佳答案

错误消息表明文件F不存在。它出现在优化级别切换后的命令行 mingw32-gcc.exe -Wall -O2 F -c 中。

我敢打赌,如果您将 F 替换为文件名(hello.c?),它将按预期工作。

关于c - mingw32-gcc.exe : error: F: No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34259058/

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