Hi
I do not have a Mac (so I can not take a look myself) so I can be wrong.
Do you have the AVR compiler configured in Code::Blocks?
From the sources of the compilerplugin I can see that the AVR compiler is not built:
#if defined(__WIN32__) || defined(__linux__)
CompilerFactory::RegisterCompiler(new CompilerGNUARM);
CompilerFactory::RegisterCompiler(new CompilerGNUAVR);
"GNU AVR GCC Compiler" is not listen in the Settings->Compiler and debugger-dialog, right?
The AVR-Project wizzard insists on the avr compiler.
I see two possibilities for you (not sure if there are better ones):
- Change the wizzard script to allowCompilerChange and show any compiler.
Wizard.AddCompilerPage(_T("GNU AVR GCC Compiler"), _T("*"), true, true);
Copy GCC Compiler Configration and adjust it to use avrgcc. [/li]
- Build Code::Blocks with avrgcc enabled
danselmi