|
| From: | Eric Weddington |
| Subject: | Re: [avr-gcc-list] linker problem? |
| Date: | Thu, 16 Mar 2006 14:43:47 -0700 |
| User-agent: | Mozilla Thunderbird 1.0.2 (Windows/20050317) |
K.Omoto wrote:
Hello,
I'm trying to use mega64 and made a simple program like,
int main(void)
{
DDRD=0xff;
PORTD='a';
call_something(); <--(1)
PORTD='b'; <--(2)
:
}
Try this:
-----------------------------------
int main(void)
{
DDRD=0xff;
PORTD='a';
call_something();
PORTD='b';
while(1)
{
}
}
-----------------------------------
the environment is.. gcc 3.4.6
Oh, interesting. I didn't release that 3.4.6 had been released. The GCC website didn't announce it, but I see it on one of the mirrors.
@ Joerg Wunsch (CCed)It would be nice to know if the compiler bug that showed up in 3.4.5 was fixed for 3.4.6.
-- Eric Weddington
| [Prev in Thread] | Current Thread | [Next in Thread] |