Hello,
I am trying to build an embedded project on another computer using the generated .bat file.
In order to do so I have converted the project to a ‘Standalone Project’ and ticked the ‘Relative Paths’ in the setup.
Unforturenately both startup_stm32wb55xx_cm4.gcc.rsp and custom_project.mkbin.rsp have a full file path to a project file in them, ex:
“[…] -c C:/_Projects/Custom_Project/BSP/STM32WBxxxx/StartupFiles/startup_stm32wb55xx_cm4.c”
instead of
“[…] -c ./BSP/STM32WBxxxx/StartupFiles/startup_stm32wb55xx_cm4.c”
Currently I am handling this using a post build script, but I would like to do without – how can I setup VisualGDB to avoid the last two full paths?
Best Regards Nikolaj