salto_simulator
salto_simulator copied to clipboard
The const declarations in "include/cpu.h" need to be extern
In order to be correct and to avoid multiple-definition errors from some linkers, declarations like
const char *task_name[task_COUNT];
actually need to be marked extern as well.
This really helps to build!