From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,516fa714bab424cb X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!nntp.club.cc.cmu.edu!feeder.erje.net!eternal-september.org!.POSTED!not-for-mail From: Warren Newsgroups: comp.lang.ada Subject: Re: GPS 2010 for AVR Date: Fri, 30 Jul 2010 18:13:50 +0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: <4c51d42b$0$12211$7b1e8fa0@news.nbl.fi> Injection-Date: Fri, 30 Jul 2010 18:13:50 +0000 (UTC) Injection-Info: mx01.eternal-september.org; posting-host="9f8M0iN5t54V+4DF/iqO8g"; logging-data="2228"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/TWUZns1fTvvfcjsT0bw1NWz0/+r0Y+A0=" User-Agent: Xnews/5.04.25 X-Face: &6@]C2>ZS=NM|HE-^zWuryN#Z/2_.s9E|G&~DRi|sav9{E}XQJb*\_>=a5"q]\%A;5}LKP][1mA{gZ,Q!j Cancel-Lock: sha1:T/xTzzHMjbEh7RVTCZrcdlFd0g0= Xref: g2news1.google.com comp.lang.ada:12737 Date: 2010-07-30T18:13:50+00:00 List-Id: Warren expounded in news:Xns9DC56260D7E70WarrensBlatherings@81.169.183.62: > Tero Koskinen expounded in news:4c51d42b$0$12211$7b1e8fa0@news.nbl.fi: >> For AVR-Ada 1.1 you can use command: >> avr-gnatmake -XMCU=atmega328p -Phello.gpr > > I installed AVR-Ada on my home computer. I'm interested in using > some of the library support for it, so I gave it a go. But I > ran into a problem in getting it to link: Ok, I looked at the hello example more closely, and after some experimentation I finally got all my ducks in a row. It now works, hoo ha! The key turned out to be the following 3 lines in the project file (that I had differently): package Builder renames AVR.Builder; package Compiler renames AVR.Compiler; package Binder renames AVR.Binder; I'm not that familiar with all this gnat project file business, but I can see that I'll need to.. Warren