Step 1. Install build tools and git on CentOS >= 7
and Fedora >= 19
:
sudo yum groupinstall -y "Development Tools" && sudo yum install -y git
Step 2. Install Atlas:
sudo yum install atlas-devel
Installing both git
and cmake
or make
by following instructions on the websites is
straightforward. Here we provide the instructions to build gcc-4.8
from source codes.
Step 3. Install the 32-bit libc
with one of the following system-specific commands:
sudo apt-get install libc6-dev-i386 # In Ubuntu
sudo yum install glibc-devel.i686 # In RHEL (Red Hat Linux)
sudo yum install glibc-devel.i386 # In CentOS 5.8
sudo yum install glibc-devel.i686 # In CentOS 6/7
Step 4. Download and extract the gcc
source code with the prerequisites:
wget http://mirrors.concertpass.com/gcc/releases/gcc-4.8.5/gcc-4.8.5.tar.gz
tar -zxf gcc-4.8.5.tar.gz
cd gcc-4.8.5
./contrib/download_prerequisites
Step 5. Build gcc
by using 10 threads and then install to /usr/local
mkdir release && cd release
../configure --prefix=/usr/local --enable-languages=c,c++
make -j10
sudo make install
Step 6. Add the lib path to your configure file such as ~/.bashrc
:
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64
Step 7. Build OpenBLAS from source.
Step 8. Build OpenCV
To build OpenCV from source code, you need the cmake library.
wget https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.tar.gz
tar -zxvf cmake-3.6.1-Linux-x86_64.tar.gz
alias cmake="cmake-3.6.1-Linux-x86_64/bin/cmake"
wget https://codeload.github.com/opencv/opencv/zip/2.4.13
unzip 2.4.13
cd opencv-2.4.13
mkdir release
cd release/
/usr/local
.cmake -D BUILD_opencv_gpu=OFF -D WITH_CUDA=OFF -D WITH_1394=OFF -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
make -j10
sudo make install
~/.bashrc
.export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/
Can you improve this documentation? These fine people already did:
Aaron Markham, Sheng Zha, thinksanky & Yao WangEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close