当前位置: 首页 > article >正文

Yocto bitbake and codeSonar

1 mdm
1.1 屏蔽mdm sysvinit的console输出
- uboot传入参数的时候传入console=null,这样Linux启动信息没有了
- 还需要在Linux配置中去掉Support for console on AMBA serial port
- 文件系统/etc/inittab文件里注释掉::respawn:/sbin/getty -L ttyS000 115200 vt100 -n root -I "Auto login as root ..."

1.2 Ubuntu service
/usr/sbin/service
是个脚本,只是没有后缀.sh。

2 cmake
2.1 Yocto SDK
Download SDK install script, then run the script to install SDK to target directory.
SDK shell

2.2 musl libc dynamic-linker
$CC -o test test.c \
-Xlinker \
--dynamic-linker=/lib/ld-musl-aarch64.so.1

2.3 静态库
CMakeLists.txt中add_library()不指定SHARED,就是编译静态库。

2.4 静态可执行
CMakeLists.txt中target_link_libraries()添加-static,就是编译静态可执行。

3 bitbake
3.1 bitbake
.bb file
S = <Makefile directory>
SRCREV = <gerrit commit id>
SRC_URI += "file://0001-xxx.patch;patchdir=${WORKDIR}/git \
        file://0002-xxx.patch;patchdir=${WORKDIR}/git"
0001-xxx.patch and 0002-xxx.patch are under current folder files.

3.2 Yocto添加应用程序
[26th-Apr-2022]
rm /path/to/bitbake.lock

For user space Makefile, refer to 3.3 of Android开发环境搭建和编译系统。
meta-xxx/recipes-bsp/hello-bsp/files/COPYRIGHT
meta-xxx/recipes-bsp/hello-bsp/files/Makefile
meta-xxx/recipes-bsp/hello-bsp/files/include
meta-xxx/recipes-bsp/hello-bsp/files/src
meta-xxx/recipes-bsp/hello-bsp.bb
SRC_URI = "file://COPYRIGHT"
SRC_URI += "file://Makefile"
SRC_URI += "file://include"
SRC_URI += "file://src"
S = "${WORKDIR}"
TARGET_CC_ARCH += "${LDFLAGS}"
do_compile () {
        echo "${WORKDIR}"
        oe_runmake
}
do_install () {
        install -d ${D}${sbindir}
        # hello_bsp name comes from Makefile.
        install -m 0755 hello_bsp ${D}${sbindir}/
}
bitbake -c cleanall hello-bsp
bitbake hello-bsp

Build whole project:
core-image-base.bb
IMAGE_INSTALL_append = "hello-bsp"
bitbake core-image-base

3.3 bitbake cmake
[26th-Apr-2022]
Need install ninja-build in Linux PC, otherwise cmake could not generate Makefile under build directory.
The following first command in bb file is used to mkdir build folder for cmake, second command is used to pass parameters to cmake. Don't need add do_compile() and do_install() for cmake in bb file.
inherit pkgconfig cmake
EXTRA_OECMAKE += "-DXXX"

bitbake -c cleanall hello-bsp
bitbake hello-bsp

"inherit cmake" will call cmake.bbclass of OE build system.

3.4 standalone cmake showcase
wget http://git.openembedded.org/bitbake/snapshot/bitbake-1.17.0.tar.gz

1) export BBPATH=/path/to/project
2) conf/bitbake.conf
CACHE   = "${TMPDIR}/cache"
STAMP   = "${TMPDIR}/stamps"
TMPDIR  = "${TOPDIR}/tmp"
B       = "${TMPDIR}"
T       = "${TMPDIR}/work"
BBFILES = "${BBPATH}/xxx.bb"
3) classes/base.bbclass
addtask build
4) classes/cmake.bbclass
S="${PWD}/xxx/build"
cmake_do_build() {
    . /path/to/environment-setup-aarch64-poky-linux
    export SYSROOT_PATH=/path/to/sysroots/aarch64-poky-linux

    rm -rf "${S}"
    mkdir "${S}"
    cd "${S}"

    cmake ../ \
        -DCMAKE_INSTALL_PREFIX=$SYSROOT_PATH/usr/ \
        ${EXTRA_OECMAKE}
    make
    make install
}
EXPORT_FUNCTIONS do_build
5) xxx.bb
DESCRIPTION="build xxx"
PN="xxx"
EXTRA_OECMAKE +="-Dxxx=1"
inherit cmake
6)
bitbake -s
bitbake xxx -vDD

3.5 Linux为普通用户添加Docker权限
apt install docker.io
sudo groupadd docker
sudo usermod -aG docker <username>
newgrp docker

3.6 bitbake列出所有的target
bitbake-layers show-recipes |grep <xxx>
bitbake <xxx>

4 codeSonar
MISRA C:2012
1) Create Project Tree and Create Project in codeSonar webserver.
2) csshiftleft/scripts/config.ini
ProjectName = the code sonar reports directory in webserver.
3) csshiftleft/build/module_build.sh
Add build commands to this file.
4) build
cd csshiftleft/scripts/
python3 codesonarbuild.py
codeSonar userName and Password are the Windows login userName and Password.

5 ctest
add_definitions()需要加在ADD_SUBDIRECTORY()之前,不然宏不起作用。
ADD_SUBDIRECTORY(unittest)
enable_testing()
add_test(
    NAME ${BINARY_NAME}
    COMMAND ${BINARY_NAME} # It will call gtest main()
    <arg_list>)


http://www.kler.cn/a/429113.html

相关文章:

  • Jenkins-基于Role的鉴权机制
  • HarmonyOS NEXT应用开发边学边玩系列:从零实现一影视APP (三、影视搜索页功能实现)
  • pytest-instafail:让测试失败信息即时反馈
  • 【OpenCV(C++)快速入门】--opencv学习
  • YOLOv5训练长方形图像详解
  • 【时时三省】(C语言基础)柔性数组的使用
  • 【5G】Spectrum 频谱
  • 关于网页自动化工具DrissionPage进行爬虫的使用方法
  • flink终止提交给yarn的任务
  • 什么是CSS盒模型?box-sizing又是什么?
  • 架构09-可靠通信
  • Unity 策略游戏地图上的网格是如何实现的
  • 游戏引擎学习第38天
  • css定义多个延时动画案例代码
  • 基于单片机的智能农田灌溉节水系统设计及应用
  • centos部署SkyWalking并在springcloud项目中用法举例
  • 在AWS上可以使用什么和人工智能相关的服务?
  • #装饰器#
  • java数据结构与算法之二分查找(蓝桥杯)
  • Visual Studio 2022 控制台应用程序热重载问题与解决方法
  • lnmp+discuz论坛
  • RK3588的mipicsi与Fpga通信
  • 2024-12-05OpenCV高级-立体视觉
  • Thinkphp+UniApp开发的多场馆场地预定小程序源码
  • 3D 生成重建024-LGM第一个开源的3D生成大模型!
  • Windows版Nexus因磁盘空间占满导致orientdb数据损坏修复