Skip to content

Commit c62f6d0

Browse files
ankunsnordicjm
authored andcommitted
cmake: nrfxlib_calculate_lib_path NRF54H20_ENGB_CPURAD
One library path is returned by nrfxlib_calculate_lib_path for both CONFIG_SOC_NRF54H20_CPURAD and CONFIG_SOC_NRF54H20_ENGB_CPURAD. The libraries for both version of the SoC are expected to be the same. In case any user of this function needs a separate version (not recommended) of the library for CONFIG_SOC_NRF54L15_ENGA_CPUAPP, the result returned by this function should be updated by the calling cmake code. Signed-off-by: Andrzej Kuros <[email protected]>
1 parent 1992dc3 commit c62f6d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function(nrfxlib_calculate_lib_path lib_path)
5454
if(DEFINED CONFIG_TRUSTED_EXECUTION_NONSECURE AND ${CALC_LIB_PATH_NS_PROVIDED})
5555
set(arch_soc_dir ${arch_soc_dir}_ns)
5656
endif()
57-
elseif(DEFINED CONFIG_SOC_NRF54H20_CPURAD)
57+
elseif(DEFINED CONFIG_SOC_NRF54H20_CPURAD OR DEFINED CONFIG_SOC_NRF54H20_ENGB_CPURAD)
5858
set(arch_soc_dir ${arch_soc_dir}_cpurad)
5959
endif()
6060
elseif(CONFIG_SOC_SERIES_BSIM_NRF52X)

0 commit comments

Comments
 (0)