Best build system for embedded development / cross-compilation

I am doing some development right now using dsPIC, and I don't really like MPLAB. I actually use Visual Studio with a makefile project. I am currently using SCons, which seems to work quite well after finding a useful guide on how to use an alternative compiler . However, I cannot help but wonder if there is a better build system for this? And also, is there a better way to get Scons to do this?

+6
build-process embedded scons makefile build-system
source share
3 answers

Just use vim, make files and invoke the MPLAB command line compiler yourself.

+6
source share
+4
source share

The easiest way to do embedded development is to use your favorite code editor to write code, and then switch to the compiler IDE to create and load the code into the processor.

Obviously, the code editor and compiler IDE can be the same, which is even easier!

-2
source share

All Articles