nuttx/drivers/segger/CMakeLists.txt
Lup Yuen Lee eec015a66e drivers/segger: Download systemview from NuttX Mirror Repo
CI Builds for `stm32f429i-disco:systemview` and `nucleo-f446re:systemview` are failing, because www.segger.com is blocking our downloads for systemview. This PR updates the Segger Makefiles to download systemview from our Cached Dependency at NuttX Mirror Repo: https://github.com/NuttX/nuttx/releases/download/systemview/SystemView_Src_V356.zip

```
Configuration/Tool: nucleo-f446re/systemview,CONFIG_ARM_TOOLCHAIN_CLANG
CMake Error at /github/workspace/sources/nuttx/build/_deps/systemview-subbuild/systemview-populate-prefix/src/systemview-populate-stamp/download-systemview-populate.cmake:170 (message):
    error: downloading 'https://www.segger.com/downloads/systemview/SystemView_Src_V356.zip' failed
          status_code: 22
          status_string: "HTTP response code said error"
```

https://github.com/apache/nuttx-apps/actions/runs/26855455932/job/79197351538#step:10:1547

Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
2026-06-03 19:19:24 +08:00

100 lines
3.1 KiB
CMake

# ##############################################################################
# drivers/segger/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
# file to you under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
# ##############################################################################
if(CONFIG_SEGGER_RTT OR CONFIG_SEGGER_SYSVIEW)
if(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/SystemView)
FetchContent_Declare(
systemview
DOWNLOAD_NAME "SystemView.zip"
DOWNLOAD_DIR ${CMAKE_CURRENT_LIST_DIR}
URL "https://github.com/NuttX/nuttx/releases/download/systemview/SystemView_Src_V${CONFIG_SEGGER_SYSVIEW_TARGET_SOURCE}.zip"
SOURCE_DIR
${CMAKE_CURRENT_LIST_DIR}/SystemView
BINARY_DIR
${CMAKE_BINARY_DIR}/SystemView
DOWNLOAD_NO_PROGRESS true
TIMEOUT 30)
FetchContent_GetProperties(systemview)
if(NOT systemview_POPULATED)
FetchContent_Populate(systemview)
endif()
endif()
endif()
if(CONFIG_SEGGER_RTT)
nuttx_add_kernel_library(RTT)
target_sources(RTT PRIVATE segger.c)
set(RTT_SRCS SystemView/SEGGER/SEGGER_RTT.c)
if(CONFIG_SEGGER_RTT_SECTION)
target_compile_options(
RTT PRIVATE -DSEGGER_RTT_SECTION=${CONFIG_SEGGER_RTT_SECTION})
endif()
if(CONFIG_SEGGER_RTT_BUFFER_SECTION)
target_compile_options(
RTT
PRIVATE -DSEGGER_RTT_BUFFER_SECTION=${CONFIG_SEGGER_RTT_BUFFER_SECTION})
endif()
if(CONFIG_ARCH_ARMV7M)
list(APPEND RTT_SRCS SystemView/SEGGER/SEGGER_RTT_ASM_ARMv7M.S)
endif()
if(CONFIG_STREAM_RTT)
list(APPEND RTT_SRCS stream_rtt.c)
endif()
if(CONFIG_SYSLOG_RTT)
list(APPEND RTT_SRCS syslog_rtt.c)
endif()
if(CONFIG_NOTE_RTT)
list(APPEND RTT_SRCS note_rtt.c)
endif()
if(CONFIG_SERIAL_RTT)
list(APPEND RTT_SRCS serial_rtt.c)
endif()
target_compile_options(RTT PRIVATE -Wno-shadow -Wno-pointer-to-int-cast)
target_sources(RTT PRIVATE ${RTT_SRCS})
target_include_directories(RTT PRIVATE config SystemView/SEGGER)
endif()
if(CONFIG_SEGGER_SYSVIEW)
nuttx_add_kernel_library(SystemView)
target_compile_options(SystemView PRIVATE -Wno-shadow
-Wno-pointer-to-int-cast)
target_sources(SystemView PRIVATE note_sysview.c
SystemView/SEGGER/SEGGER_SYSVIEW.c)
target_include_directories(SystemView PRIVATE ${NUTTX_DIR}/sched config
RTT/RTT SystemView/SEGGER)
endif()