c++ - QT Creator - Unable to build HTML5 application -


i installed qt creator 2.7.0 [based on qt 5.0.1 (64 bit)] on ubuntu 13.04 end. tried creating sample html5 application , when try run it, issues encountered. here's output of build process.

23:16:22: starting: "/usr/bin/qmake" /home/res/git/test/first/first.pro -r -spec linux-g++-64 config+=debug config+=declarative_debug config+=qml_debug 23:16:22: process "/usr/bin/qmake" exited normally. 23:16:22: starting: "/usr/bin/make"  make: circular <- first dependency dropped. copying application data... g++ -m64 -o first main.o html5applicationviewer.o moc_html5applicationviewer.o   -l/usr/x11r6/lib64 -lqt5webkitwidgets -lx11 -lxslt -lrt -lgio-2.0 -lgstapp-0.10 -lgstinterfaces-0.10 -lgstpbutils-0.10 -pthread -lgstvideo-0.10 -lgstbase-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lxml2 -lglib-2.0 -lsqlite3 -l/build/buildd/qtdeclarative-opensource-src-5.0.1/lib -l/usr/lib/x86_64-linux-gnu -l/usr/lib/x86_64-linux-gnu/x86_64-linux-gnu -l/usr/lib/x86_64-linux-gnu/x86_64-linux-gnu/x86_64-linux-gnu -l/build/buildd/qtwebkit-opensource-src-5.0.1/lib -lqt5sql -lqt5quick -lqt5opengl -lqt5printsupport -lqt5webkit -lqt5qml -lqt5location -lqt5widgets -lqt5network -lqt5sensors -lqt5gui -lqt5core -lgl -lpthread  /usr/bin/ld: cannot find -lxslt /usr/bin/ld: cannot find -lgio-2.0 /usr/bin/ld: cannot find -lgstapp-0.10 /usr/bin/ld: cannot find -lgstinterfaces-0.10 /usr/bin/ld: cannot find -lgstpbutils-0.10 /usr/bin/ld: cannot find -lgstvideo-0.10 /usr/bin/ld: cannot find -lgstbase-0.10 /usr/bin/ld: cannot find -lgstreamer-0.10 /usr/bin/ld: cannot find -lgobject-2.0 /usr/bin/ld: cannot find -lgmodule-2.0 /usr/bin/ld: cannot find -lgthread-2.0 /usr/bin/ld: cannot find -lxml2 /usr/bin/ld: cannot find -lglib-2.0 /usr/bin/ld: cannot find -lsqlite3 collect2: error: ld returned 1 exit status make: *** [first] error 1 23:16:22: process "/usr/bin/make" exited code 2. error while building/deploying project first (kit: desktop) when executing step 'make' 23:16:22: elapsed time: 00:00. 

this first time i'm trying html5 application in qt creator. how can issue solved?

for each library, check if you've installed appropriate *-dev package. e.g message /usr/bin/ld: cannot find -lxslt check package libxslt1-dev


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -