The error you have in the attached log is caused by the included path:
-IH:/Freescale Bilder/Quelldateien
Because this path has a space in it, and is not encapsulates in quotation marks, "", the compiler sees it as two statements:
-IH:/Freescale
Bilder/Quelldateien
But it cannot find this path. I am not sure if this path is part of the support package, or part of a custom block that your group has created. If it is an include path that you have added, then you need to wrap it with quotation marks, or change the file name to eliminate spaces:
-I"H:/Freescale Bilder/Quelldateien"
or
-IH:/Freescale_Bilder/Quelldateien