Skip to content

Commit 771a213

Browse files
piotrkoziarnordicjm
authored andcommitted
cmake: add nrfxlib_calculate_lib_path case for nrf54l10 & nrf54l05
Adds case in nrfxlib_calculate_lib_path for nrf54l10 and nrf54l05. Both secure and non-secure variants lib paths will be calculated. Signed-off-by: Piotr Koziar <piotr.koziar@nordicsemi.no>
1 parent 159dc65 commit 771a213

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common.cmake

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ function(nrfxlib_calculate_lib_path lib_path)
4848
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
4949
elseif(DEFINED CONFIG_SOC_NRF5340_CPUNET)
5050
set(arch_soc_dir ${arch_soc_dir}_cpunet)
51-
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
51+
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP
52+
OR DEFINED CONFIG_SOC_NRF54L10_CPUAPP OR DEFINED CONFIG_SOC_NRF54L05_CPUAPP)
5253
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
5354
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
5455
set(arch_soc_dir ${arch_soc_dir}_ns)

0 commit comments

Comments
 (0)