> make g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/targets/FREMANTLE_X86/usr/share/qt4/mkspecs/linux-g++ -I. -I/targets/FREMANTLE_X86/usr/include/QtCore -I/targets/FREMANTLE_X86/usr/include/QtGui -I/targets/FREMANTLE_X86/usr/include -I. -I. -o HelloWorld.o HelloWorld.cpp HelloWorld.cpp:6: error: stray '\342' in program HelloWorld.cpp:6: error: stray '\200' in program HelloWorld.cpp:6: error: stray '\234' in program HelloWorld.cpp:6: error: stray '\342' in program HelloWorld.cpp:6: error: stray '\200' in program HelloWorld.cpp:6: error: stray '\235' in program HelloWorld.cpp: In function 'int main(int, char**)': HelloWorld.cpp:6: error: 'Hello' was not declared in this scope make: *** [HelloWorld.o] Error 1
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel *label = new QLabel(“Hello World”); label->show(); return app.exec(); }