如你所知,我真的是CodeLite和MinGW的初学者,我也不知道它是如何运作的。当我尝试构建项目时,输出表示它的错误,我不知道该怎么办。我使用的是Windows 10。
我只是按照基于此视频的步骤进行首次尝试。 https://www.youtube.com/watch?v=LGGHxaDxSK4 当我想申请一些安装时,酒吧总是会出现这样的情况 http://sta.sh/015gez4rfjn0 我甚至尝试标记mingw32-gcc-g ++
让我告诉你我的输出
C:\Windows\system32\cmd.exe /C C:/MinGW/bin/mingw32-make.exe -j4 SHELL=cmd.exe -e -f Makefile
"----------Building project:[ letstr - Debug ]----------"
mingw32-make.exe[1]: Entering directory 'C:/Users/asu/Documents/letstry/letstr'
C:/MinGW/bin/g++.exe -o ./Debug/letstr @"letstr.txt" -L.
g++.exe: @letstr.txt: No such file or directory
g++.exe: no input files
mingw32-make.exe[1]: *** [Debug/letstr] Error 1
letstr.mk:78: recipe for target 'Debug/letstr' failed
mingw32-make.exe[1]: Leaving directory 'C:/Users/asu/Documents/letstry/letstr'
Makefile:4: recipe for target 'All' failed
mingw32-make.exe: *** [All] Error 2
====1 errors, 0 warnings====
答案 0 :(得分:0)
g ++。exe:@ letstr.txt:没有这样的文件或目录
我认为您的目标文件不正确。如果您创建C程序,则必须使用.c
扩展名而不是.txt
命名。