cancel
Showing results for 
Search instead for 
Did you mean: 

SECoreBin postbuild.sh

MBuen.1
Senior

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Bubbles
ST Employee

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.

View solution in original post

2 REPLIES 2
Bubbles
ST Employee

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
Senior

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 =)