Offline Compiling Made Easy
.
Thanks go to Adam Green over on his notebook page regarding gcc4mbed! Check it out here.
Ok, I wrote a handy offline compiler creator.
Here's how to setup an offline compiler in windows....
- Download this zip file.
- Extract it into a folder.
- Run createcompiler.cmd
Watch and wait.
Feel free to view the readme.
1 comment on Offline Compiling Made Easy:
Please log in to post comments.
Not exactly offline compilation for the mbed, but I'll share anyway. I use Visual Studio C++ for the core components of my app. I do this to unit test all core modules of the app (my code mostly), then I do integration on the device. VSC++ gives me a nice IDE + debugger. I then upload the files to mbed and compile there for the integration bits.
Most of device specific things (like SPI, ports, etc) I just stub what I need.