1
Bus Pirate Development / Re: Compiling Bus Pirate firmware with MPLABX (under linux, mac, ...)
a few observations:
- On such a small processor, we should definitely use -Os to conserve space. It might be a good idea to look at other GCC options, see http://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html . AFAIK the Windows IDE also uses GCC, so there should be some way to enable size optimization
- I like to enable all warnings with -Wall, this helps to catch some errors.
- The use of ELF or COFF intermediate format should have no effect on the final HEX file.
- I don't mind using the MPLABX Makefile. I managed to get a HEX file, although I always get an error at the end of the build.
Ian: you offered to give me SVN access. I'll be glad to help with this project, and of course I won't do large changes without discussing them first. My Google Code user name is xxxxxxxxx . Thanks!
-Stephan