avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-gcc-list] AVR-Studio debugging working with new Win32 version of av


From: Peter Fleury
Subject: [avr-gcc-list] AVR-Studio debugging working with new Win32 version of avr-gcc
Date: Fri Jan 19 11:41:04 2001

Hello,

avr-gcc programs can be debugged using AVR Studio in the same way as with 
Volkers port.
You must recompile avr-libc:

  copy the 'src' directory from avr-libc-20001125 to
  c:\avrgcc\avr\lib\src

  cd c:\avrgcc\avr\lib\src

  modify the Makefile as follows

  change 
    prefix=/usr/local/  
  to
    prefix=c:\avrgcc
    ABSPATH=c:\avrgcc\avr\lib\src
  
  change
     MD = ..
     INSTAALL = ..
  to
     MD = $(subst /,\,mkdir $@)
     INSTALL =  $(subst \,/,cp -v -f $^) 

  remove 'install_headers' from target install:
    (already installed by binary distribution of avr-libc)

  change 
     mkdir -p  
  to 
     $(MD)     (stuppied DOS mkdir doesn't like -p)

  create sub-directories:
   mkdir libc
   mkdir avr3
   mkdir avr4
   mkdir avr5
   mkdir avr3\libc
   mkdir avr4\libc
   mkdir avr5\libc
   
  then  
    make
  and 
    make install
    make clean

  dont't delete the src directory, as AVR-Studio needs these sources
 
  you need the file 'cp.exe' from Volker's port.

Regards
    Peter Fleury      http://jump.to/fleury






reply via email to

[Prev in Thread] Current Thread [Next in Thread]