Цитата(Andy Great @ Jan 1 2006, 19:12)

ключ -nostdlib (уточнил) - это ключ линкера. Я ни словом не упомянул про make. С Вашим нежеланием читать доку Вам трудно будет работать.
Всю документацию по
WINAVR просмотрел. Ничего такого там нет. Нет там таких ключей ни на :
avr-ld, avr-gcc, avr-as.
Так-же внимательно смотрел с сайта
www.gnu.org/manual всю доку по этим трем утилитам. Тоже ничего по поводу этого ключа.
вот что у меня записано в bat файле:
avr-gcc -mmcu=avr2 -S tavr.c -o tavr.s
avr-as -mmcu=avr2 -al=asm.l freqpomp.s -o tavrs.o
avr-ld -Map maps.l -T tavr.lnk tavrs.o -o file.bintavr.lnk - не привожу вроде мне все там понятно.
Вот что может linker
avr-ld, и на
gnu.org небольше этого написано, поможите поподробнее Вы наверняка же знаете, заранее спасибо.
Кроме -Lpath ближе тем там нет:
Controlling the linker avr-ld:
Selected linker options
While there are no machine-specific options for avr-ld, a number of the standard options might be of interest to AVR users.
-lname
Locate the archive library named libname.a, and use it to resolve currently unresolved symbols from it. The library is searched along a path that consists of builtin pathname entries that have been specified at compile time (e. g. /usr/local/avr/lib on Unix systems), possibly extended by pathname entries as specified by -L options (that must precede the -l options on the command-line).
-Lpath
Additional location to look for archive libraries requested by -l options.
--defsym symbol=expr
Define a global symbol symbol using expr as the value.
-M
Print a linker map to stdout.
-Map mapfile
Print a linker map to mapfile.
--cref
Output a cross reference table to the map file (in case -Map is also present), or to stdout.
--section-start sectionname=org
Start section sectionname at absolute address org.
-Tbss org
-Tdata org
-Ttext org
Start the bss, data, or text section at org, respectively.
-T scriptfile