Skip to content

Instantly share code, notes, and snippets.

@strangesast
Created January 3, 2020 18:33
Show Gist options
  • Save strangesast/3299ec4a236c2899c01a769bb5127d7f to your computer and use it in GitHub Desktop.
Save strangesast/3299ec4a236c2899c01a769bb5127d7f to your computer and use it in GitHub Desktop.
apt install git make cmake build-essential python python3
git clone https://github.com/openssl/openssl.git
cd openssl
git checkout OpenSSL_1_1_1-stable
./config
make
make install
wget https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.gz
tar -xf boost*.gz
./bootstrap.sh
./b2 link=static
./b2 link=static nstall
git clone https://github.com/open62541/open62541.git
cd open62541
git checkout 1.0
git submodule update --init --recursive
mkdir build && cd build
cmake -DBUILD_SHARED_LIBS=FALSE -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUA_NAMESPACE_ZERO=FULL -DUA_ENABLE_SUBSCRIPTIONS_EVENTS=ON ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment