Forum Discussion

RGrot's avatar
RGrot
Icon for New Contributor rankNew Contributor
7 years ago
Solved

How to fix error on TeamCity with SoC EDS 18.1: Toolchain required to build project is not registered: Altera Baremetal GCC (with eclipse console executable: eclipsec.exe)

Note: This problem was also posted on an old thread that does no longer get attention. We use an application called TeamCity for continuous integration. When developers check-in their changes, TeamC...
  • RGrot's avatar
    7 years ago

    Today we found a solution: Use eclipse itself in stead of the console version eclipsec. The same command-line options can be used, e.g:

    I.s.o. using this:

    COMMAND_TO_RUN="eclipsec --launcher.suppressErrors -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data ${TEMP_WORKSPACE_DIR} -build ${project}"

    use this

    COMMAND_TO_RUN="eclipse --launcher.suppressErrors -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -data ${TEMP_WORKSPACE_DIR} -build ${project}"

    This is related to case 00412336 on IPS (Intel Premier Support).