C:\Users\Gswthebest\Desktop\collect2.exe [Error] ld returned 1 exit status
时间: 2023-08-16 21:07:54 浏览: 162
引用[1]:在链接.o到可执行文件时,出现collect2.exe: error: ld returned 1 exit status错误。引用[2]:D:/clion/x86_64-8.1.0-release-win32-sjlj-rt_v6-rev0/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot open output file main.exe: Invalid argument collect2.exe: error: ld returned 1 exit status mingw32-make.exe[3]: *** [CMakeFiles\main.dir\build.make:85: main.exe] Error 1 mingw32-make.exe[2]: *** [CMakeFiles\Makefile2:75: CMakeFiles/main.dir/all] Error 2 mingw32-make.exe[1]: *** [CMakeFiles\Makefile2:82: CMakeFiles/main.dir/rule] Error 2 mingw32-make.exe: *** [Makefile:117: main] Error 2 2 解决办法。引用[3]:1、编译成功的例子在后台执行,有时一闪而过,如果再次build ,则会提示上述错误。解决方法:打开任务管理器,找到相应的exe进程,关闭即可; 或者直接关闭QtCreator。2、没有编译成功的情况下,最常见情况是程序本身需要include的头文件被遗漏了。解决方法:细心查找基类所用的头文件,include之后即可。3、.h文件中相关的槽函数在cpp文件中没有定义。解决方法:查找遗漏的槽函数,根据需要,具体的定义。
问题: C:\Users\Gswthebest\Desktop\collect2.exe [Error] ld returned 1 exit status
回答: 这个错误是链接过程中出现的错误,可能有几个原因导致。首先,可能是编译成功的程序在后台执行,如果再次build,则会提示上述错误。解决方法是打开任务管理器,找到相应的exe进程,关闭即可,或者直接关闭QtCreator。其次,可能是程序本身需要include的头文件被遗漏了。解决方法是细心查找基类所用的头文件,include之后即可。最后,可能是.h文件中相关的槽函数在cpp文件中没有定义。解决方法是查找遗漏的槽函数,并根据需要进行具体的定义。[2][3]
阅读全文