Go to file
2024-06-15 09:13:31 +08:00
application Add application and middleware. 2024-06-15 08:35:07 +08:00
build Add build and hal and utils. 2024-06-15 08:36:44 +08:00
customization Add other files. 2024-06-15 08:42:18 +08:00
external Add external. 2024-06-15 08:30:24 +08:00
hal Add build and hal and utils. 2024-06-15 08:36:44 +08:00
middleware Add application and middleware. 2024-06-15 08:35:07 +08:00
output_files/libs/test_tools Add test tools. 2024-06-15 08:40:46 +08:00
test Add test and tools. 2024-06-15 08:39:16 +08:00
tools Add test and tools. 2024-06-15 08:39:16 +08:00
utils Add build and hal and utils. 2024-06-15 08:36:44 +08:00
.clang-format Add other files. 2024-06-15 08:42:18 +08:00
.gitignore Add other files. 2024-06-15 08:42:18 +08:00
CMakeLists.txt Add other files. 2024-06-15 08:42:18 +08:00
Doxyfile Add other files. 2024-06-15 08:42:18 +08:00
Makefile Improve:make clean. 2024-06-15 09:13:31 +08:00
README.md Add other files. 2024-06-15 08:42:18 +08:00

1. README

1.1. 概述

基于IPC领域产品的SDK工程。

阅读小技巧:

  • SDK工程所有开发文档均使用markdown语法编写需要使用markdown语法解析器进行解析方便阅读Typora开发工程师建议使用vscode安装markdownlint插件进行阅读
  • SDK工程所有文档描述路径时"//"双斜杠表示工程根目录;

1.2. 编译

架构设计上支持去平台编译和运行本仓库源码可仿真运行在ubuntu系统。

1.2.1. Ubuntu系统

在项目根目录下执行命令:

make clean         // 如果之前有跨平台编译过需要先make clean
make cmake         // 构建源码生成Makefile文件
cd cmake-shell/    // 在中间文件目录进行编译,把所有中间文件创建在此目录
make               // 编译全部输出构建文件

1.2.2. 交叉编译

参考:

//build/cmake/toolchain/linux.toolchain.cmake
//Makefile

参考上述文件新建一份配置文件建议不要修改原文档新建一个交叉编译工程把IPC SDK工程作为子仓库进行git管理维护SDK的绝对跨平台属性。

交叉编译请参考基于IPC SDK作为子仓库的工程配置此处忽略。

1.2.3. 小技巧

1.2.3.1. 代码阅读辅助工具基于vscode

为了方便代码跳转阅读除了安装基本的c++插件外结合cmake构建工具生成的compile_commands.json文件可实现代码之间的精准跳转。

compile_commands.json文件生成路径

//cmake-shell/compile_commands.json

compile_commands.json文件配置方法

在//.vscode/settings.json配置文件中添加
"C_Cpp.default.compileCommands": "/home/xiaojiazhu/project/ipc-sdk/ipc/cmake-shell/compile_commands.json",