开发者问题收集

使用 CMake 和嵌入式目标的 clang-tidy

2019-09-09
3618

这里的目标是帮助人们在使用 C++ 进行开发时发现嵌入式系统上的一些错误。作为其中的一部分,我正在尝试让 clang-tidy 适用于小型嵌入式目标。

我正在尝试设置 CMake 来执行以下操作:

  1. 在构建时运行 clang tidy;然后
  2. 使用 GCC 8.2 进行编译

但是,clang-tidy 失败,提示“未知目标 CPU 'armv6-m"

--

我使用的 CMake 脚本如下:

ClangTidy.cmake

set(ENABLE_CLANG_TIDY ON CACHE BOOL "Add clang-tidy automatically to builds")
if (ENABLE_CLANG_TIDY)
    find_program(CLANG_TIDY_EXE NAMES "C:\\Program Files\\LLVM\\bin\\clang-tidy.exe")
    if (CLANG_TIDY_EXE)
        message(STATUS "clang-tidy found: ${CLANG_TIDY_EXE}")
        set(CLANG_TIDY_CHECKS "-*,modernize-*")
        set(CMAKE_CXX_CLANG_TIDY "${CLANG_TIDY_EXE};-checks=${CLANG_TIDY_CHECKS};-header-filter='${CMAKE_SOURCE_DIR}/*'"
        CACHE STRING "" FORCE)
    else()
        message(AUTHOR_WARNING "clang-tidy not found!")
        set(CMAKE_CXX_CLANG_TIDY "" CACHE STRING "" FORCE) # delete it
    endif()
endif()

armv6-m 是 CMake 脚本的一部分,但它仅用于 GCC,以下内容用于设置 GCC 标志:

set(TARGET STM32F070x6)
set(ARCH armv6-m)
set(CORE cortex-m0)
set(CMAKE_CXX_FLAGS "-march=${ARCH} -mcpu=${CORE} -D${TARGET}")

然后构建以下内容:

#
# Including extra cmake rules
include(cmake/ClangTidy.cmake)

#Compile and link the exe :)
add_executable(${TARGET}.elf ${MAIN_SOURCE})

#Print the size of the .hex
add_custom_target(size ALL arm-none-eabi-size ${TARGET}.elf DEPENDS ${TARGET}.elf)
add_custom_target(${TARGET}.bin ALL DEPENDS ${TARGET}.elf COMMAND ${CMAKE_OBJCOPY} -Obinary ${TARGET}.elf ${TARGET}.bin)

cmake build 生成的构建消息为:

[build] "C:\Program Files\CMake\bin\cmake.exe" -E __run_co_compile 
--tidy="C:/Program Files/LLVM/bin/clang-tidy.exe;-checks=-*,modernize-*;-header-filter='G:/Files/Git/projectname/*'" --source=../src/main.cpp 
-- C:\PROGRA~2\GNUTOO~1\82018-~1\bin\AR10B2~1.EXE  -DHSE_VALUE=48000000 -DSTM32F070x6 -DTRACE -DUSE_STDPERIPH_DRIVER -I../include -I../system -I../library -I../library/usb -I../library/usb/HID -I../library/usb/LL -I../library/usb/Standard -I../library/usb/Types -I../library/common -I../library/common/SCPI -I../library/common/containers -I../library/peripherals -I../library/peripherals/Bitbanging -I../st-library/include -I../st-library/include/arm -I../st-library/include/cmsis -I../st-library/include/cortexm -I../st-library/include/diag -I../st-library/include/stm32f0-stdperiph -march=armv6-m -mcpu=cortex-m0 -DSTM32F070x6 -Os -mthumb -g2 -ggdb -pedantic -Wall -Wextra -Wfloat-equal -Wshadow -Wall -Wl,--gc-sections -fmessage-length=0 -ffunction-sections -fdata-sections -ffreestanding -fno-builtin -std=c++1z -fno-rtti -fno-exceptions -fno-use-cxa-atexit -fno-threadsafe-statics -ftemplate-backtrace-limit=0 -O2 -g -DNDEBUG -MD -MT CMakeFiles/STM32F070x6.elf.dir/src/main.cpp.obj -MF CMakeFiles\STM32F070x6.elf.dir\src\main.cpp.obj.d -o CMakeFiles/STM32F070x6.elf.dir/src/main.cpp.obj -c ../src/main.cpp

上述内容之后立即出现错误:

[build] error: unknown target CPU 'armv6-m' [clang-diagnostic-error]
[build] note: valid target CPU values are: nocona, core2, penryn, bonnell, atom, silvermont, slm, goldmont, goldmont-plus, tremont, nehalem, corei7, westmere, sandybridge, corei7-avx, ivybridge, core-avx-i, haswell, core-avx2, broadwell, skylake, skylake-avx512, skx, cascadelake, cannonlake, icelake-client, icelake-server, knl, knm, k8, athlon64, athlon-fx, opteron, k8-sse3, athlon64-sse3, opteron-sse3, amdfam10, barcelona, btver1, btver2, bdver1, bdver2, bdver3, bdver4, znver1, x86-64

target ( armv6-m ) 字段似乎与 GCC 使用的字段相同。但我不确定为什么使用 target 字段调用 clang-tidy。

3个回答

在源代码中我们可以看到:

static int HandleTidy(const std::string& runCmd, const std::string& sourceFile,
                      const std::vector<std::string>& orig_cmd)
{
  // Construct the clang-tidy command line by taking what was given
  // and adding our compiler command line.  The clang-tidy tool will
  // automatically skip over the compiler itself and extract the
  // options.
  int ret;
  std::vector<std::string> tidy_cmd = cmExpandedList(runCmd, true);
  tidy_cmd.push_back(sourceFile);
  tidy_cmd.emplace_back("--");
  cmAppend(tidy_cmd, orig_cmd);

src: https://github.com/Kitware/CMake/blob/09032f09f8d2b4f7af658060ef434083f9d6a0d4/Source/cmcmd.cxx#L196-L207

所以我想说,所有编译器选项,即 CMAKE_CXX_FLAGS 也默认传递给 clang-tidy...

Mizux
2019-09-09

作为一种解决方法,您可以编写一个小脚本来过滤收到的参数,然后使用过滤后的参数列表调用 clang-tidy 。然后可以将此脚本交给 CMAKE_CXX_CLANG_TIDY ,而不是实际的可执行文件。

svanveen
2022-01-20

正如其他人所暗示的,这是由于 CMake 将所有标志传递给 clang-tidy ,而 clang-tidy 不理解所有这些标志。就我而言,它偶然发现了 RISC-V march 标志。

我使用的解决方法是生成一个中间脚本,该脚本使用 sed 删除 march 标志,然后再将其传递给 clang-tidy 。此解决方案完全包含在 CMake 中,但也可以将该脚本放在磁盘上。

我的解决方案(在您的情况下,请改用 CMAKE_CXX_CLANG_TIDY ):

file(GENERATE OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/clang-tidy.sh
     CONTENT "#!/usr/bin/env sh\nclang-tidy $(echo $@ | sed 's/-march=[^ ]* //')"
     FILE_PERMISSIONS OWNER_READ OWNER_EXECUTE)
set(CMAKE_C_CLANG_TIDY "${CMAKE_CURRENT_BINARY_DIR}/clang-tidy.sh")
Shadoxfix
2023-10-31