Zephyr CMake错误

Seb*_*Bøe 4 zephyr-rtos

当我第一次尝试构建Zephyr时,我收到此错误消息:

CMake Error at CMakeLists.txt:1 (include):
  include could not find load file:

    /cmake/app/boilerplate.cmake


-- The C compiler identification is GNU 5.4.0
-- The CXX compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
CMake Error at CMakeLists.txt:4 (target_sources):
  Cannot specify sources for target "app" which is not built by this project.


CMake Error at CMakeLists.txt:5 (target_sources_ifdef):
  Unknown CMake command "target_sources_ifdef".


CMake Warning (dev) in CMakeLists.txt:
  No cmake_minimum_required command is present.  A line of code such as

    cmake_minimum_required(VERSION 3.8)

  should be added at the top of the file.  The version specified may be lower
  if you wish to support older CMake versions for this project.  For more
  information run "cmake --help-policy CMP0000".
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Configuring incomplete, errors occurred!
Run Code Online (Sandbox Code Playgroud)

Seb*_*Bøe 11

未设置环境变量ZEPHYR_BASE.

将ZEPHYR_BASE环境变量设置为Zephyr存储库的根目录.

  • 请注意,ZEPHYR_BASE通常是通过从Zephyr的顶级目录中获取(不执行!)`zephyr-env.sh`脚本来设置的.更多信息在以下文档中:http://docs.zephyrproject.org/getting_started/getting_started.html#building-a-sample-application (3认同)
  • 另请注意,发生此类错误后,建议手动删除构建目录并从头开始重新启动。 (2认同)