E:\QTFile\build-NewPushButton-Desktop_Qt_5_12_12_MinGW_64_bit-Debug\Makefile.Debug:120: warning: overriding recipe for target 'debug/qrc_rec.cpp'
时间: 2024-03-30 10:38:47 浏览: 241
这个问题是关于 Qt 编译时出现的警告,警告信息表明目标文件 qrc_rec.cpp 的编译规则被重载了。可能的原因是在 Makefile 文件中,有多个编译规则定义了同一个目标文件的编译方式。这种情况下,编译器会选择最后一个编译规则作为目标文件的编译方式。
你可以检查 Makefile 文件,查看是否有重复的编译规则,如果有的话,可以尝试将其删除或者修改,以避免出现警告信息。另外,也可以尝试重新生成 Makefile 文件,或者使用更高版本的 Qt 编译器来编译你的代码。
相关问题
D:/LenovoQt/Tools/mingw1120_64/bin/mingw32-make -f Makefile.Debug mingw32-make[1]: Entering directory 'D:/OtTest/build-TestQtSDK20230708-Desktop_Qt_6_5_1_MinGW_64_bit-Debug' g++ -c -fno-keep-inline-dllexport -w<-Wunknown-pragmas> -g -std=gnu++1z -Wall -Wextra -Wextra -fexceptions -mthreads -DUNICODE -D_UNICODE -DWIN32 -DMINGW_HAS_SECURE_API=1 -DQT_QML_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_CORE_LIB -I../TestQtSDK20230708 -I. -I../TestQtSDK20230708 -I../../LenovoQt/6.5.1/mingw_64/include -I../../LenovoQt/6.5.1/mingw_64/include/QtWidgets -I../../LenovoQt/6.5.1/mingw_64/include/QtGui -I../../LenovoQt/6.5.1/mingw_64/include/QtXml -I../../LenovoQt/6.5.1/mingw_64/include/QtCore -Idebug -I/include -I../../LenovoQt/6.5.1/mingw_64/mkspecs/win32-g++ -o debug\configreadxml.o ..\TestQtSDK20230708\configreadxml.cpp 系统找不到指定的文件。 mingw32-make[1]: *** [Makefile.Debug:606: debug/configreadxml.o] Error 1 mingw32-make[1]: Leaving directory 'D:/OtTest/build-TestQtSDK20230708-Desktop_Qt_6_5_1_MinGW_64_bit-Debug' mingw32-make: *** [Makefile:45: debug] Error 2 23:54:42: 进程"D:\LenovoQt\Tools\mingw1120_64\bin\mingw32-make.exe"退出,退出代码 2 。 Error while building/deploying project TestQtSDK20230708 (kit: Desktop Qt 6.5.1 MinGW 64-bit) When executing step "Make" 23:54:42: Elapsed time: 00:00.
根据你提供的编译日志,出现了以下错误:
```
系统找不到指定的文件。
mingw32-make[1]: *** [Makefile.Debug:606: debug/configreadxml.o] Error 1
mingw32-make[1]: Leaving directory 'D:/OtTest/build-TestQtSDK20230708-Desktop_Qt_6_5_1_MinGW_64_bit-Debug'
mingw32-make: *** [Makefile:45: debug] Error 2
Error while building/deploying project TestQtSDK20230708 (kit: Desktop Qt 6.5.1 MinGW 64-bit)
When executing step "Make"
```
这个错误表明在编译过程中,无法找到 `configreadxml.cpp` 文件,导致编译失败。
请确保以下几点:
1. 检查 `configreadxml.cpp` 文件的路径是否正确,它应该位于 `D:/OtTest/TestQtSDK20230708` 目录下。
2. 检查 `Makefile.Debug` 文件中是否正确引用了 `configreadxml.cpp` 文件。检查文件中对 `configreadxml.cpp` 的路径是否正确,并且没有拼写错误。
3. 确保 `configreadxml.cpp` 文件存在于指定的路径中,并且没有被其他进程占用。
如果以上步骤没有解决问题,请提供更多关于你的项目结构、Makefile 文件和其他相关文件的信息,以及完整的编译日志,这样我可以更好地帮助你找到问题所在。
怎么修改这个错误E:\qt\qt-project\FEIQ1\build-softeem-Desktop_Qt_5_11_1_MinGW_32bit-Debug\Makefile.Debug:88: error: missing separator (did you mean TAB instead of 8 spaces?). Stop.
你需要打开 Makefile.Debug 文件,找到第 88 行,并将该行的开头空格替换为制表符。如果你使用的是 Windows 操作系统,可以在命令行中使用以下命令打开 Makefile.Debug 文件:
```
notepad.exe E:\qt\qt-project\FEIQ1\build-softeem-Desktop_Qt_5_11_1_MinGW_32bit-Debug\Makefile.Debug
```
这将在 Notepad 编辑器中打开 Makefile.Debug 文件。然后你可以使用编辑器中的搜索和替换功能来将空格替换为制表符。
如果你使用的是其他编辑器,可以使用相应的方法打开 Makefile.Debug 文件,并进行相应的修改。请注意,在 Makefile 中,必须使用制表符而不是空格来缩进命令。
阅读全文