This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Engineer

Hi everybody!
I'm using MDK-ARM Professional version 4.20, when i try to build my ARM project i get this error

Error: L6915E: Library reports error: __use_no_semihosting_swi was requested, but a semihosting fputc was linked in

How can i solve the problem? Thank you for your help!

Parents Reply Children
  • Look at the error message:

    Error: L6915E: Library reports error: __use_no_semihosting_swi was requested, but a semihosting fputc was linked in
    

    Read it literally!

    It says that you requested one thing, but your project contradicts that!

    You clearly have to choices:

    Either Don't request __use_no_semihosting_swi;

    Or Don't link a semihosting fputc!