Forum: System Workbench for STM32

External Compiler error

When I try to build whatever project with external compiler I get the following error:

‘’make all
Building file: ../startup/startup_stm32f767xx.s
Invoking: MCU GCC Assembler
%cd%
make: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4227d3)’’


while internal copiler build everything. What is the problem with the external compiler?
I tried everything I have no idea about the source of “%cd%”, but it appears a syntax error somewhere...


Thank you

The problem was on the System Path.
I make a start.bat as follow:


@ECHO OFF
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Ac6\SystemWorkbench;C:\ProgramData\Oracle\Java\javapath;
eclipse.exe



and now the internal compiler works.