If you are trying to install Qt and Qwt (Qt Widgets for Technical Applications) on CentOS, then the following instructions should be of good use. I created these steps, after many a trial and error, using Qt 5.1.1 and Qwt 6.1.0 on CentOS 6.4 x86 64bit. These steps have proven to work on several CentOS machines and could also work on Fedora and Red Hat.
Feel free to use newer versions of the install packages, but just make sure to alter the version numbers in the steps as applicable. Also, most dependencies are covered in these instructions, but there may be others that you will have to find if something fails to build properly.
Installing Qt 5.1.1 on CentOS 6.4
1. Install Development Tools
sudo yum groupinstall "Development Tools"
sudo yum groupinstall "Development Tools"
To copy to clipboard, switch view to plain text mode
2. Install glibc-devel.i686 (the 32-bit version is required to build GCC)
sudo yum install glibc-devel.i686
sudo yum install glibc-devel.i686
To copy to clipboard, switch view to plain text mode
3. Download and install GCC 4.8.1 or latest version. Instructions copied from here
tar xvjf gcc-4.8.1.tar.bz2
cd gcc-4.8.1
./contrib/download_prerequisites
cd ..
mkdir objdir
cd objdir
$PWD/../gcc-4.8.1/configure --prefix=$HOME/gcc-4.8.1
make
sudo make install
tar xvjf gcc-4.8.1.tar.bz2
cd gcc-4.8.1
./contrib/download_prerequisites
cd ..
mkdir objdir
cd objdir
$PWD/../gcc-4.8.1/configure --prefix=$HOME/gcc-4.8.1
make
sudo make install
To copy to clipboard, switch view to plain text mode
4. Copy new GCC libraries to /usr/lib64
sudo mv /usr/lib64/libstdc++.so.6 /usr/lib64/libstdc++.so.6.backup
sudo cp -P /opt/gcc-4.8.1/lib64/libstdc++.so.6 /usr/lib64
sudo cp /opt/gcc-4.8.1/lib64/libstdc++.so.6.0.18 /usr/lib64/
sudo ldconfig -v
sudo mv /usr/lib64/libstdc++.so.6 /usr/lib64/libstdc++.so.6.backup
sudo cp -P /opt/gcc-4.8.1/lib64/libstdc++.so.6 /usr/lib64
sudo cp /opt/gcc-4.8.1/lib64/libstdc++.so.6.0.18 /usr/lib64/
sudo ldconfig -v
To copy to clipboard, switch view to plain text mode
5. Download and install Qt 5.1.1 or latest version
sudo ./qt-linux-opensource-5.1.1-x86_64-offline.run
sudo ./qt-linux-opensource-5.1.1-x86_64-offline.run
To copy to clipboard, switch view to plain text mode
6. Add Qt commands to PATH (e.g. qmake)
sudo gedit /etc/profile.d/qt5.sh
sudo gedit /etc/profile.d/qt5.sh
To copy to clipboard, switch view to plain text mode
- Add the following lines to qt5.sh
PATH=/opt/Qt5.1.1/5.1.1/gcc_64/bin:$PATH
export PATH
PATH=/opt/Qt5.1.1/5.1.1/gcc_64/bin:$PATH
export PATH
To copy to clipboard, switch view to plain text mode
. /etc/profile.d/qt5.sh
. /etc/profile.d/qt5.sh
To copy to clipboard, switch view to plain text mode
- Verify that qmake is version 5.1.1
which qmake
which qmake
To copy to clipboard, switch view to plain text mode
7. Edit Qt Creator desktop configuration file to allow all users to run
sudo gedit /usr/share/applications/DigiaQtOpenSource-qtcreator.desktop
sudo gedit /usr/share/applications/DigiaQtOpenSource-qtcreator.desktop
To copy to clipboard, switch view to plain text mode
- Comment out or remove the line “Path=/rootâ€
- Save and close DigiaQtOpenSource-qtcreator.desktop
Installing Qwt 6.1.0 on CentOS 6.4
1. Install mesa-libGLU-devel
sudo yum install mesa-libGLU-devel
sudo yum install mesa-libGLU-devel
To copy to clipboard, switch view to plain text mode
2. Download and install Qwt 6.1.0 or latest version
tar xvjf qwt-6.1.0.tar.bz2
cd qwt-6.1.0
tar xvjf qwt-6.1.0.tar.bz2
cd qwt-6.1.0
To copy to clipboard, switch view to plain text mode
gedit qwtconfig.pri
gedit qwtconfig.pri
To copy to clipboard, switch view to plain text mode
- Change QWT_INSTALL_PREFIX to “/opt/qwt-$$QWT_VERSIONâ€
- Configure rest of qwtconfig.pri and comment/uncomment plugins as desired
- Save and close qwtconfig.pri
qmake qwt.pro
make
sudo make install
qmake qwt.pro
make
sudo make install
To copy to clipboard, switch view to plain text mode
3. Link Qwt plugin to Qt
sudo ln -s /opt/qwt-6.1.0/plugins/designer/libqwt_designer_plugin.so /opt/Qt5.1.1/Tools/QtCreator/bin/plugins/designer/
sudo ln -s /opt/qwt-6.1.0/plugins/designer/libqwt_designer_plugin.so /opt/Qt5.1.1/Tools/QtCreator/bin/plugins/designer/
To copy to clipboard, switch view to plain text mode
4. Create qwt ld.so configuration file
echo /opt/qwt-6.1.0/lib | sudo tee /etc/ld.so.conf.d/qwt.conf
sudo ldconfig -v
echo /opt/qwt-6.1.0/lib | sudo tee /etc/ld.so.conf.d/qwt.conf
sudo ldconfig -v
To copy to clipboard, switch view to plain text mode
5. Add the following lines to the .pro file of the Qt project in which you want to use Qwt plugins
#QWT
QWT_LOCATION = /opt/qwt-6.1.0
INCLUDEPATH += $${QWT_LOCATION}/include/
LIBS += -L$${QWT_LOCATION}/lib -lqwt
#QWT
QWT_LOCATION = /opt/qwt-6.1.0
INCLUDEPATH += $${QWT_LOCATION}/include/
LIBS += -L$${QWT_LOCATION}/lib -lqwt
To copy to clipboard, switch view to plain text mode
6. Done!
Bookmarks