Skip to content

Commit

Permalink
cmake: add nrfxlib_calculate_lib_path case for nrf54l10 & nrf54l05
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
piotrkoziar authored and nordicjm committed Dec 6, 2024
1 parent 159dc65 commit 771a213
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ function(nrfxlib_calculate_lib_path lib_path)
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
elseif(DEFINED CONFIG_SOC_NRF5340_CPUNET)
set(arch_soc_dir ${arch_soc_dir}_cpunet)
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP)
elseif(DEFINED CONFIG_SOC_NRF54L15_CPUAPP OR DEFINED CONFIG_SOC_NRF54L20_ENGA_CPUAPP
OR DEFINED CONFIG_SOC_NRF54L10_CPUAPP OR DEFINED CONFIG_SOC_NRF54L05_CPUAPP)
set(arch_soc_dir ${arch_soc_dir}_cpuapp)
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
set(arch_soc_dir ${arch_soc_dir}_ns)
Expand Down

0 comments on commit 771a213

Please sign in to comment.