Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在为 Windows 编译 QXT 时(按照这些说明),从命令行运行“make”时,我从 Makefile.Debug 收到以下错误:
*** missing separator. Stop.
我一直在使用 QT 生成 Visual Studio 项目文件,但不知道为什么会这样。
这也可能发生在支持库(例如 quazip)或您在 Windows 上使用 qmake 生成 Makefile 时。
确保验证您的 QMAKESPEC 设置是否正确。如果您以前生成过 Visual Studio 项目,它可能会设置为此,请确保将其更改为:
QMAKESPEC = QTDIR\mkspecs\win32-g++
否则 Makefile 将无法正确生成。
请参阅此处了解更多信息。
我的部分职责是帮助他人避免这个问题