Skip to content

Commit 2f2dcec

Browse files
committed
cmake: add cpuapp suffix to nRF54L20
Added cpuapp suffix to nRF54L20 when searching for a library. Signed-off-by: Rafał Kuźnia <[email protected]>
1 parent a1ee70b commit 2f2dcec

File tree

7 files changed

+5
-0
lines changed

7 files changed

+5
-0
lines changed

common.cmake

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ function(nrfxlib_calculate_lib_path lib_path)
5353
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
5454
set(arch_soc_dir ${arch_soc_dir}_ns)
5555
endif()
56+
elseif(DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
57+
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
58+
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
59+
set(arch_soc_dir ${arch_soc_dir}_ns)
60+
endif()
5661
elseif(DEFINED CONFIG_SOC_NRF54H20_CPURAD)
5762
set(arch_soc_dir ${arch_soc_dir}_cpurad)
5863
endif()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)