Unfortunately on the machines I’m using, the drive letters are the same and I am running into this issue. Is it likely that this will be fixed with the next release or should I just go ahead and copy the fast semihosting files into my project?
Yes I am using the latest version, and I’m using msbuild, not makefiles. If I click on the fastsemihosting files in visual studio, it shows the paths as relative to the project, not the localappdata. Please let me know if there is a way to fix this.
I figured out that the issue was I was including <iostream>. Removing this reference brought down my code size by ~160KB. I needed iostream to use cout, which I then replaced with printf. I am surprised that there is no newlib replacement.