赞
踩
git clone https://github.com/COVESA/vsomeip.git
我的ubuntu 版本是20.04,所以以ubuntu 20.04为例。
vsomeip依赖 Boost,所以我们要先安装 Boost(版本在1.55-1.74之间),官方文档上对应的boost包版本过低。
sudo apt-get install gcc g++ make
sudo apt install cmake
sudo apt-get install libboost-system-dev libboost-thread-dev libboost-log-dev
sudo apt-get install asciidoc source-highlight doxygen graphviz
cd vsomeip
mkdir build
cd build
cmake -DENABLE_MULTIPLE_ROUTING_MANAGERS=1 ..
make
sudo make install
运行上述命令进行编译vsomeip库,其中运行make之后的编译很慢,大约需要四五分钟,耐心等待就好。
clone 下载的vsomeip中自带一个demo hello_world,我们先编译对应的helloworld程序
Helloworld程序的编译方法也可以查看自带的readme vsomeip/examples/hello_world/readme
回到build目录下,执行下列命令:
cmake --build . --target hello_world
cd ./examples/hello_world/
make
sudo make install
sudo ldconfig
运行后编译就完成。
编译完成之后,会在对应的编译目录下生成对应helloworld的二进制程序:hello_world_client和hello_world_service
此时不能安装readme里面写的执行
Running Hello World Example
---------------------------
The Hello World Example should be run on the same host.
The network addresses within the configuration files need to be adapted to match
the devices addresses.
To start the hello world client and service from their build-directory do:
HOST1:
VSOMEIP_CONFIGURATION=../helloworld-local.json \
VSOMEIP_APPLICATION_NAME=hello_world_service \
./hello_world_service
HOST1:
VSOMEIP_CONFIGURATION=../helloworld-local.json \
VSOMEIP_APPLICATION_NAME=hello_world_client \
./hello_world_client
我们在 …/ 目录下并不能找到 helloworld-local.json这个文件。
所以我们需要将 vsomeip/examples/hello_world/helloworld-local.json 文件复制到二进制文件生成的目录下才能执行。
复制后,vsomeip/buuld/examples/hello_world的目录结构为:
下面运行
HOST1运行service:
env VSOMEIP_CONFIGURATION=./helloworld-local.json \
VSOMEIP_APPLICATION_NAME=hello_world_service \
./hello_world_service
HOST1运行client:
env VSOMEIP_CONFIGURATION=./helloworld-local.json \
VSOMEIP_APPLICATION_NAME=hello_world_client \
./hello_world_client
运行结果如下:
此时,一个简单的vsomeip cilent端和service端的通信就搭建完成了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。