Is it possible to change the parameters passed to make in AVR Studio?
For example, from the command line I can do "make -j 2" which almost doubles the compile speed. How can I do this from within the AVR Studio IDE?
Is it possible to change the parameters passed to make in AVR Studio?
For example, from the command line I can do "make -j 2" which almost doubles the compile speed. How can I do this from within the AVR Studio IDE?
Don't think that's possible in the IDE - why not just build at the command line?
why not just build at the command line?
2. I like to be able to double click on any errors and have the code displayed in the editor.
3. Probably something else I am not thinking of right now.
I wonder if there is an environment variable I can set to set parameters for make? Something similar to CFLAGS for the C compiler. A quick google search hasn't found anything yet.