Reputation: 3
When I try and build my Embedded C project in Eclipse, I get the error below after the build gets to around 37%. I think it may have something to do with generating the hex and binary files from project_name.elf, but I'm not sure given the error message.
`Errors occurred during the build.
Errors running builder 'CDT Builder' on project 'project_name'.
Internal error building project project_name configuration Debug
Empty command
Internal error building project project_name configuration Debug
Empty command`
I've tried different versions of MinGW and the GNU ARM Embedded Toolchain, and I haven't had any luck.
Upvotes: 0
Views: 357
Reputation: 2964
I have encountered this problem with MCUXpresso, which is NXP's CDT-enabled Eclipse-based IDE when using the "Internal builder" "Builder type" instead of using the default (make) "External builder". This setting is found in the project's settings at the "C/C++ Build" page in the "Builder Settings" tab. In my case the error message only appears after all compilation units have been compiled and the final binary has been linked successfully (for unknown reasons).
Upvotes: 0