From 3f976db6ff26017adf31b3914a12f064020701a1 Mon Sep 17 00:00:00 2001 From: qqwang Date: Tue, 6 Jul 2021 17:03:47 +0800 Subject: [PATCH] [chore][freertos] fix cmakelists parameter error --- components/freertos/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/freertos/CMakeLists.txt b/components/freertos/CMakeLists.txt index dd161784..bea5e8cc 100644 --- a/components/freertos/CMakeLists.txt +++ b/components/freertos/CMakeLists.txt @@ -20,8 +20,8 @@ file(GLOB_RECURSE sources "${CMAKE_CURRENT_SOURCE_DIR}/croutine.c" "${CMAKE_CURRENT_SOURCE_DIR}/tasks.c" "${CMAKE_CURRENT_SOURCE_DIR}/timers.c" "${CMAKE_CURRENT_SOURCE_DIR}/portable/MemMang/heap_5.c" -"${CMAKE_CURRENT_SOURCE_DIR}/portable/gcc/risc-v/${mcu}/port.c" -"${CMAKE_CURRENT_SOURCE_DIR}/portable/gcc/risc-v/${mcu}/portASM.S" +"${CMAKE_CURRENT_SOURCE_DIR}/portable/gcc/risc-v/${CHIP}/port.c" +"${CMAKE_CURRENT_SOURCE_DIR}/portable/gcc/risc-v/${CHIP}/portASM.S" ) list(APPEND ADD_SRCS ${sources}) # aux_source_directory(src ADD_SRCS)