On Friday 22 May 2015 09:20:29 Shawn Nock wrote:
Will you post the Makefile for the buildroot package?
Sorry guys, I sorted this one out. The culprit was actually my added -std=c99 that made lots of other stuff break. Taking that out it boiled down to a few uses of:
for (int i = 0; ......
Changing those to:
int i; for (i =
Fixed the build.
I have attached a patch.