cancel
Showing results for 
Search instead for 
Did you mean: 

STM32MP157 ECO 6.0.0 OP-TEE build fails: libgcc.a not found [Help !]

debugging
Lead

Migrating From ECO 5.0 to ECO 6.0 for STM32MP15A custom board. TF_A, TF_FWCONFIG, U-BOOT and KERNEL all builds fine but stuck at building OPTEE..

Not using Yocto but the source tarballs provided in the developer package.

OPTEE builds fine on ECO 5.0 (just built it right now with ECO SDK 5.0)

OPTEE build fails on ECO 6.0  (SDK 6.0)

All on the same machine.

Same Cube-MX generated files and build commands used for both ECO versions.

LD build/core/all_objs.o
arm-ostl-linux-gnueabi-ld.bfd: cannot find libgcc.a: No such file or directory

on ST's China OPTEE WIKI it says:

https://wiki.stmicroelectronics.cn/stm32mpu/index.php?title=How_to_configure_OP-TEE&oldid=78220

To overcome the issue, add the directive LIBGCC_LOCATE_CFLAGS=--sysroot=$SDKTARGETSYSROOT. 

But that did not work, for exampel the Wiki given command fails as well

make PLATFORM=stm32mp1 CFG_EMBED_DTB_SOURCE_FILE=stm32mp157c-ev1.dts CFG_TEE_CORE_LOG_LEVEL=2 LIBGCC_LOCATE_CFLAGS=--sysroot=${SDKTARGETSYSROOT}  O=out all

On another China web wiki it says

https://wiki.st.com/stm32mpu/wiki/How_to_build_OP-TEE_components

To overcome the issue, add the directive CFLAGS32=--sysroot=$SDKTARGETSYSROOT or CFLAGS64=--sysroot=$SDKTARGETSYSROOT, depending on target architecture. For example: 

WHICH ACTUALLY WORKED !!

 

it seems a known issue discussed by experts on github back in 2021, but the patch provided by the link is gone.

https://github.com/OP-TEE/optee_os/issues/4673

https://github.com/OP-TEE/optee_os/pull/4737

https://github.com/OP-TEE/optee_os/issues/4188

https://github.com/OP-TEE/optee_os/issues/4559

https://patchwork.yoctoproject.org/project/ti/patch/20240122191902.1561510-1-denis@denix.org/

But the patch is still needed for internal OE-built toolchain to pass
sysroot, otherwise libgcc.a cannot be found:
| aarch64-oe-linux-ld.bfd: cannot find libgcc.a: No such file or directory
...
+Explicitly pass the new variable LIBGCC_LOCATE_CFLAGS variable when searching
+for the compiler libraries as there's no easy way to reliably pass --sysroot
+otherwise.

Same issue report on TI forum.

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1371051/am625-op-tee-build-fail-sdk9-2

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1326433/am62a7-atf-optee-compilation

Any  guidance how to fix this ?

As with all cases and mine , it fails at:

ldelf/ldelf.elf

P..S Ubuntu 24.10 (if an answers like "not supported distro": 5.0 builds but the NEWER tool chain does not)

 

A solution mentioned is this but no idea how to apply or if it should fix it:

Allow setting sysroot for libgcc lookup.Explicitly pass the new variable LIBGCC_LOCATE_CFLAGS variable when searching for the compiler libraries as there's no easy way to reliably pass --sysroot otherwise. Upstream-Status: Pending [OP-TEE/optee_os#4188] Signed-off-by: Ross Burton <ross.burton@arm.com>

A patch  was released here:

https://web.git.yoctoproject.org/meta-ti/commit/?h=dunfell&id=f8182afdcfe427865707077d353359827f1ff6bf

 

UPDATE ! This issue could be reproduced with the OPTEE Makefile.sdk. Go  into  the optee folder. then 

make -f $PWD/../Makefile.sdk clean

then start male in the optee folder:

make -f $PWD/../Makefile.sdk all

when running this command the build goes fine.

Refer to the output at beginning of the make command  and copy the string , in my case:

make PLATFORM=stm32mp1 CROSS_COMPILE_core=arm-ostl-linux-gnueabi- CROSS_COMPILE_ta_arm64=arm-ostl-linux-gnueabi- ARCH=arm CFG_ARM32_core=y CROSS_COMPILE_ta_arm32=arm-ostl-linux-gnueabi- NOWERROR=1 LDFLAGS= CFG_TEE_CORE_LOG_LEVEL=2 CFG_TEE_CORE_DEBUG=n CFG_STM32MP_PROFILE=secure_and_system_services -C /media/user/H3D2P1/Develop/STMICRO/STM_ECO_6.0.0/Developer-Package/optee-os-stm32mp-4.0.0-stm32mp-r1-r0/optee-os-stm32mp-4.0.0-stm32mp-r1 PREFIX=/media/user/H3D2P1/Develop/STMICRO/STM_ECO_6.0.0/Developer-Package/SDK/sysroots/cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi O=/media/user/H3D2P1/Develop/STMICRO/STM_ECO_6.0.0/Developer-Package/optee-os-stm32mp-4.0.0-stm32mp-r1-r0/optee-os-stm32mp-4.0.0-stm32mp-r1/../build/optee-stm32mp157a-dk1 CFG_EMBED_DTB_SOURCE_FILE=stm32mp157a-dk1.dts CFG_STM32MP1_OPTEE_IN_SYSRAM=y CFG_STM32MP15=y

stop the build and clean again and paste the command on the command line, observe the error

 LD      /media/user/H3D2P1/Develop/STMICRO/STM_ECO_6.0.0/Developer-Package/optee-os-stm32mp-4.0.0-stm32mp-r1-r0/optee-os-stm32mp-4.0.0-stm32mp-r1/../build/optee-stm32mp157a-dk1/ldelf/ldelf.elf
arm-ostl-linux-gnueabi-ld.bfd: cannot find libgcc.a: No such file or directory

According to the wiki the command and options are all correct to build from the command prompt, but there is something that makes the Makefile.sdk do something more, but what ....?

libgcc.a files do exists in the ECO 6.0 SDK

debugging_0-1743590250401.png

 

0 REPLIES 0