bash: ../configure: /bin/sh^M: bad interpreter: No such file or directory
这个错误通常是由于Windows平台下的文本格式导致的,而在Linux下则会被解释为错误。解决这个问题的方法之一是使用dos2unix
命令将脚本转换为Unix格式。
dos2unix ../configure
然后重新运行配置步骤:
../configure \ -opensource \ -confirm-license \ -release \ -prefix /usr/local/Qt \ -nomake examples \ -nomake tests
Creating qmake... .g++: error: unrecognized debug output level '\x0d' '; did you mean '-fdata-sections'? make: *** [Makefile:250: main.o] Error 1
这也是由于在windows平台下执行Linux编译的文本格式错误 (一般是因为用了虚拟机) 解决方法是
在 Qt 源码的根目录下运行以下命令:
find /home/ubuntu2004/qt-everywhere-src-5.15.8 -type f -exec dos2unix {} \;
递归清理其中的文本格式问题
然后重新运行./configure
命令