Skip to main content
MBuen.1
Senior
September 17, 2021
Solved

SECoreBin postbuild.sh

  • September 17, 2021
  • 2 replies
  • 938 views

Hello guys,

I was setting up my STM32CubeIDE to use the SBSFU sample projets. I'm facing a issue with SECore engine, more specific the postbuild.sh script.

When i compile SE, i get the following message:

ln: failed to create symbolic link '../../postbuild.sh': File exists.

ln -s ./SECBOOT_ECCDSA_WITH_AES128_CBC_SHA256.sh ../../postbuild.sh : failed

Anyone know how i could solve this?

This topic has been closed for replies.
Best answer by Bubbles

Hi @MBuen.1​ ,

this looks like some problem related to file system on your computer. Write protection, directory path too long or perhaps missing path.

Try looking into that.

BR

J.

2 replies

Bubbles
BubblesBest answer
ST Employee
September 29, 2021

Hi @MBuen.1​ ,

this looks like some problem related to file system on your computer. Write protection, directory path too long or perhaps missing path.

Try looking into that.

BR

J.

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
MBuen.1
MBuen.1Author
Senior
September 29, 2021

Yeah mate, it was actually a really silly thing. Compiler creates a symbolic link for postbuild.sh. This error was being raised because there was already a file with same name as the symbolic link compiler was trying to create.

When i discovered that, just deleted the file and everything went good =)