我想在Ubuntu 12.04上使用QtCreator IDE开发一些Qt应用程序。当我尝试构建最简单的项目时,出现以下错误:
而且,当我使用命令行(qmake2 ProjectName.pro
命令)时,一切顺利。我确定QtCreator中的qmake
路径正确。
你有什么想法吗,这是怎么回事?
编辑:
mainwindow.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>25</height>
</rect>
</property>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>
输出线
编辑2:
生成文件:
http://shrib.com/CBm2rKJV
最佳答案
感谢您的支持,我终于解决了我的问题。就像Guilherme所说的,这完全是关于环境设置的。我不得不重新配置和更正某些Kit选项,尤其是编译器路径,并选择好的qmake
版本与我设置的每个编译器一起使用。
这些提示很少,这将为BeagleBoard构建应用程序并使用angstrom-linux-gnueabi
工具链:
在您启动QtCreator之前,必须运行(...)/angstrom/arm/environment-setup
!然后,从CONSOLE 启动QtCreator 。这是我要获得正常工作环境所必须做的。
问候
耶祖
关于c++ - 语法错误: newline unexpected - QtCreator,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20609693/