Skip to content

How To Build On RHEL\CentOS 7

ttldtor edited this page Nov 26, 2020 · 13 revisions
  1. Install RHEL\CentOS 7
  2. Install all tools
    su
    yum -y update && yum install -y wget tar which
    yum install -y gcc binutils binutils-devel gcc-c++
    wget https://github.com/Kitware/CMake/releases/download/v3.19.1/cmake-3.19.1-Linux-x86_64.sh
    bash cmake-3.19.1-Linux-x86_64.sh --skip-license
    rm -f cmake-3.19.1-Linux-x86_64.sh
    yum -y install epel-release && yum install -y p7zip p7zip-plugins
    yum install -y http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm
    yum install -y git
  3. Clone the repo
    cd ~
    git clone https://github.com/dxFeed/dxfeed-c-api.git
    cd dxfeed-c-api
  4. Build
    ./make_package.sh 999.0.0 rebuild no-test no-tls
    999.0.0 -- version number

The assembled bundle will be located in the build directory

Clone this wiki locally