Search found 5 matches

by jss
Fri Jan 23, 2009 5:19 am
Forum: Programming & Software
Topic: Makefile avr-size issue
Replies: 8
Views: 10800

Makefile avr-size issue

While trying to fix my compiling issues I noticed that avr-size is being called with invalid options:

Code: Select all

size: ${TARGET}
	@echo
	@avr-size -C --mcu=${MCU} ${TARGET}
To avoid error I changed the last line to:

Code: Select all

@avr-size -A ${TARGET}
EDIT: I should also mention that I am running OS X.
by jss
Fri Jan 23, 2009 5:02 am
Forum: Programming & Software
Topic: Trouble compiling
Replies: 6
Views: 3525

Re: Trouble compiling

Well, the issue stemmed from the latest (12/08) AVR MacPack binaries. Recompiling the toolchain seems to have fixed everything.
Now for the fun part...
by jss
Thu Jan 22, 2009 3:21 pm
Forum: Programming & Software
Topic: Trouble compiling
Replies: 6
Views: 3525

Re: Trouble compiling

Thanks. I poked around at it all day yesterday to no avail and came to a similar conclusion. The problem seems to lie with #include <io.h>, though it is well documented and normal in its inclusion. Thinking that it may deal with the pre-compiled AVR Toolchain I'm using, I tried installing OSX-AVR, b...
by jss
Wed Jan 21, 2009 8:48 pm
Forum: Programming & Software
Topic: Trouble compiling
Replies: 6
Views: 3525

Trouble compiling

Hi everyone, I've also posted this over at ladyada's forum, but as it seems more UzeBox specific, I thought I'd follow up here. I'm getting compilation errors when trying to run make on the Fuzebox hello.c demo. Currently, I'm running Mac OS X 10.5 on an Intel based MacBook with the latest version o...