Günter Dannoritzer <[EMAIL PROTECTED]> wrote: > /usr/local/avr/lib/gcc/avr/4.0.2/../../../../avr/bin/ld: crts8515.o: No such > file: No such file or directory
Please run your command to link the job with the -v added. That should show you the ld command that is being run. > The crts8515.o file I found in folder /usr/local/avr/lib. So I added > the -L /usr/local/avr/lib option to the linker call, but that did > not make any difference. Sure, it's a .o file, not a .a one. -L is only useful for any -l libraries. The crtXXX.o file is explicitly named to the linker by the compiler. -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) _______________________________________________ AVR-GCC-list mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/avr-gcc-list
