Public bug reported:

Binary package hint: avr-libc

Since version 1.4.4, avr-libc has supported the at90usb1287 device,
among others ( http://www.nongnu.org/avr-libc/NEWS.txt ). However, the
version in ubuntu gutsy, 1.4.5, fails to work with this device.

Steps to reproduce:

1) Create the source for a simple C program (example below).
2) avr-gcc -c -mmcu=at90usb1287 -gdwarf-2 -Os test.c -o test.o
3) avr-gcc -mmcu=at90usb1287 -gdwarf-2 test.o --output test.elf -lm

Now, I get the error:

/usr/lib/gcc/avr/4.2.1/../../../../avr/bin/ld: crtusb1287.o: No such
file: No such file or directory

Note that this example builds fine on Debian unstable, which is using
avr-libc-1.4.6.

Now, for the source of the simple C program, test.c:

#include <avr/io.h>
#include <avr/interrupt.h>

int main(void)
{

  uint8_t x;

  while (1)
  {
      x++;
  }
}

** Affects: avr-libc (Ubuntu)
     Importance: Undecided
         Status: New

-- 
support for at90usb1287 device broken
https://bugs.launchpad.net/bugs/139810
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to