- boost-1.55.0:https://sourceforge.net/projects/boost/files/boost/1.55.0/
- boost-1.71.0:https://boostorg.jfrog.io/artifactory/main/release/1.71.0/source/
- vsomeip 3.1.20:https://github.com/GENIVI/vsomeip
source ~/< your sdp path >/qnxsdp-env.sh
tar -xvf boost_1_55_0.tar.gz
cd boost_1_55_0
patch -p1 < ../boost-1_55-qnx700.patch
./bootstrap.sh
./b2 install link=static toolset=qcc cxxflags="-Vgcc_ntox86_64" target-os=qnxnto --prefix= < where you want to install boost >
tar -xvf boost_1_71_0.tar.gz
cd boost_1_71_0
和1.55一样修改tools/build/src/tools/qcc.jam
./bootstrap.sh
./b2 install link=static toolset=qcc cxxflags="-Vgcc_ntox86_64" target-os=qnxnto --prefix= < where you want to install boost >
git clone [email protected]:lixiaolia/vsomeip-qnx.git
cd vsomeip-qnx
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=../qnx_7.0.0_linux_x86_64.cmake -DCMAKE_INSTALL_PREFIX= < where you want to install vsomeip > ..
make
make install