What steps will reproduce the problem?
1. Change propeller-load.cfg so that clkmode has an invalid value (e.g.
"clkmode: foo"
2. Run propeller-load.
What is the expected output? What do you see instead?
I expect to see an error message telling me the symbol is not correct.
Instead, I see no error message.
What version of the product are you using? On what operating system?
propgcc-0.2.2
Please provide any additional information below.
The error is at line 451 of loader/src/config.c...
Change:
if (!sym) {
Error("undefined symbol: %s", id);
return FALSE;
}
To:
if (!sym->name) {
Error("undefined symbol: %s", id);
return FALSE;
}
Original issue reported on code.google.com by tjstefan...@charter.net on 28 Jan 2012 at 8:16
Original issue reported on code.google.com by
tjstefan...@charter.net
on 28 Jan 2012 at 8:16