Linker script for Stm32 F767ZI

Hi ,
I’m trying to locate the linker script for the mcu I used which is stm32 f767 . I was reading previous forums to locate the .ld script location which is,
.platformio\platforms\ststm32\ldscripts
but I couldn’t find the .ld script for f767 instead it has the following files ,
stm32f30xx.ld ,stm32f103x8.ld , stm32f405x6.ld ,stm32l15xx6.ld

or is this the proper path to the linker script ?

.platformio\packages\framework-arduinoststm32\variants\STM32F7xx\F765Z(G-I)T_F767Z(G-I)T_F777ZIT

Appreciated for your help .

Thanks.

Execute the project task Clean and then Advanced → Verbose Upload. The final linker command must have a -T switch with the linker script name, which resides in one of the folders added via -L.

Ok great ! ,

Thanks Max !