Sunday, April 29, 2018

MBED how to fix: tools.utils.NotSupportedException: No linker script found.

You try to export the MBED project to Eclipse, but the following error raise:

    raise NotSupportedException("No linker script found.")
tools.utils.NotSupportedException: No linker script found.

To fix this problem append " --source $PWD" to command line.

mbed export -m NUCLEO_F429ZI -i eclipse_gcc_arm --source $PWD

No comments:

Post a Comment