Qt installation: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
To install for the first time: | To install for the first time: | ||
yum install gstreamer-plugins-base-devel (at least on RHEL6, otherwise error in ./configure, not sure fatal or not ...) | |||
ssh as root | ssh as root |
Revision as of 12:06, 11 January 2016
Qt
To install for the first time:
yum install gstreamer-plugins-base-devel (at least on RHEL6, otherwise error in ./configure, not sure fatal or not ...)
ssh as root cd /usr/local/src cp /usr/downloads/qt-everywhere-opensource-src-4.8.4.tar.gz . gunzip qt-everywhere-opensource-src-4.8.4.tar.gz tar xvf qt-everywhere-opensource-src-4.8.4.tar rm qt-everywhere-opensource-src-4.8.4.tar cd qt-everywhere-opensource-src-4.8.4 ./configure -prefix /apps/Trolltech/Qt-4.8.4 answer 'o' answer 'yes' make make install cd /apps/Trolltech ln -s Qt-4.8.4 Qt
To reconfigure/recompile from scratch, do following
make confclean ./configure .... ...
Set PATH:
setenv PATH /apps/Trolltech/Qt/bin:$PATH
Qt Creator