我是Windows 8系统中的新用户。我安装了MinGW并设置了环境变量。我创建了最简单的hellow world代码,如下所示
#include<iostream>
#include<vector>
using namespace std;
int main(int argc, char **argv)
{
cout<<"hello world"<<endl;
return 0;
}
它第一次运行良好,但是当我做一些小修改时,例如删除“hello”,然后再次构建并运行项目。我发现该程序将继续运行。命令行一直显示:
Current working directory: C:\Users\cr\Documents\project\helloworld\Debug
Running program: le_exec.exe ./helloworld
如果我再次尝试构建它,则会显示
make.exe[1]: Entering directory 'C:/Users/cr/Documents/project/helloworld'
C:/Users/cr/MinGW/bin/g++.exe -c "C:/Users/cr/Documents/project/helloworld/main.cpp" -g -O0 -Wall -o ./Debug/main.cpp.o -I. -I.
C:/Users/cr/MinGW/bin/g++.exe -o ./Debug/helloworld @"helloworld.txt" -L.
c:/users/cr/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot open output file ./Debug/helloworld.exe: Permission denied
collect2.exe: error: ld returned 1 exit status
make.exe[1]: *** [Debug/helloworld] Error 1
helloworld.mk:78: recipe for target 'Debug/helloworld' failed
make.exe[1]: Leaving directory 'C:/Users/cr/Documents/project/helloworld'
make.exe: *** [All] Error 2
Makefile:4: recipe for target 'All' failed
====1 errors, 0 warnings====
我甚至无法删除可执行文件“helloworld.exe”,因为它在“系统”中使用,直到我重新启动计算机。
更新: 我可以在命令行中编译它:
C:/Users/cr/Documents/project/helloworld>g++ main.cpp -o test.exe
C:/Users/cr/Documents/project/helloworld>test.exe
然后它将继续运行,直到我关闭命令行窗口。如果我打开一个新的命令行窗口并再次编译该文件。没问题。
UPDATE2: 即使文件尚未编辑,第二次编译cpp文件时也会出现问题。
C:/Users/cr/Documents/project/helloworld>g++ main.cpp -o test.exe
C:/Users/cr/Documents/project/helloworld>test.exe
hello world
C:/Users/cr/Documents/project/helloworld>g++ main.cpp -o test2.exe
C:/Users/cr/Documents/project/helloworld>test2.exe
它一直在这里运行。
答案 0 :(得分:0)
谢谢大家,我一整天都在挣扎。问题是反病毒软件......我把它设置为不活动,一切都做得很好...... 我不想指出这个软件是什么,但只想提醒一下这个问题....