1. 下载boost
git clone https://gitee.com/add358/boost.git
2. 对boost进行进行交叉编译
2.1 查看boost库
sudo ./bootstrap.sh --show libraries
2.2 选择需要编译的库并增加位置前缀
sudo ./bootstrap.sh --without-libraries=atomic,chrono,context,coroutine,exception,graph,graph_parallel,mpi,wave --prefix=$Your path
2.3 修改生成的project-config.jam
按照下图增加交叉编译器。注意请使用你自己需要使用的编译器
2.3 进行交叉编译
./bjam
./bjam install
大约等20分钟,交叉编译就完成了。lib和头文件会安装在指定2.2中指定的路径上
3. 对VSOMEIP进行交叉编译
3.1 配置交叉编译工具
根据您自身的情况配置交叉编译工具
3.1 修改vsomeip的cmakefile
按照下图在cmakefile中添加Boost_root, boost_include_dir 和 boost_librarydir等。设置的路径为在第二章boost库的地址
3.2 编译vsomeip
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=$YourPath/vsomeip/armvsomeip ..
make
make install
等待10min,vsomeip的库就编译好了
4. VSOMEIP在板上的实际应用
未完待续。。。