Vincent Hilario
Vincent Hilario

Reputation: 3

Eclipse Embedded C: Errors running builder 'CDT Builder' on project "project_name"

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

Answers (1)

stefanct
stefanct

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

Related Questions