我正在Qt 5.11.1 / Qt Creator 4.6.2中进行开发,并使用QtInstaller附带的默认编译器套件MinGW 5.3.0 32bit。我的系统是Windows 10 64位。
几次运行都没有任何错误(以月为单位)后,有时我开始出现以下错误:
Cannot open output file debug\prog.exe: Permission denied
error: ld returned 1 exit status
File not found: collect2.exe
我已经打开了任务管理器,以查看我的程序是否仍在运行,但是那里没有任何条目。而且似乎在“ debug”文件夹中的可执行文件有问题,因为在那之后,不允许我擦除prog.exe。该消息框显示我没有正确的权限,但我是管理员用户。
仅当我重新启动Windows后,问题才消失。
这是我的.pro代码:
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = prog
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
main.cpp \
prog.cpp \
screen1.cpp \
screen2.cpp \
HEADERS += \
defineBotoes.h \
prog.h \
screen1.h \
screen2.h \
RESOURCES += \
resources/prog.qrc
DISTFILES +=
这是我的编译输出:
C:/Qt/Qt5.11.1/Tools/mingw530_32/bin/../lib/gcc/i686-w64-mingw32/5.3.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot open output file debug\prog.exe: Permission denied
collect2.exe: error: ld returned 1 exit status
Makefile.Debug:100: recipe for target 'debug\prog.exe' failed
mingw32-make[1]: Leaving directory 'C:/Users/RENAN-BCC/Desktop/STD/src/prog'
Makefile:36: recipe for target 'debug' failed
mingw32-make[1]: *** [debug\prog.exe] Error 1
mingw32-make: *** [debug] Error 2
08:31:49: The process "C:\Qt\Qt5.11.1\Tools\mingw530_32\bin\mingw32-make.exe" exited with code 2.
Error while building/deploying project prog (kit: Desktop Qt 5.11.1 MinGW 32bit)
When executing step "Make"
08:31:49: Elapsed time: 00:04.
有人可以帮助我吗?关于如何解决的任何想法?