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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,68f87cd0ecb20054 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!wns13feed!worldnet.att.net!attbi_s21.POSTED!53ab2750!not-for-mail From: "Jeffrey R. Carter" User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: gnat 2006 and windows vista References: <1239d4-87r.ln1@newserver.thecreems.com> <2gmMh.8562$EA.7572@trnddc07> In-Reply-To: <2gmMh.8562$EA.7572@trnddc07> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: NNTP-Posting-Host: 12.201.97.213 X-Complaints-To: abuse@mchsi.com X-Trace: attbi_s21 1174538768 12.201.97.213 (Thu, 22 Mar 2007 04:46:08 GMT) NNTP-Posting-Date: Thu, 22 Mar 2007 04:46:08 GMT Organization: AT&T ASP.att.net Date: Thu, 22 Mar 2007 04:46:08 GMT Xref: g2news1.google.com comp.lang.ada:14590 Date: 2007-03-22T04:46:08+00:00 List-Id: Randy wrote: > > No, don't know eclipse yet, I knew C and C++ and a few others from many > years ago but i not done any kind of programing in quite some time. I > heard of ada some time ago but it was kinda hard to get more > information. Now I have some old books and a new one and I have some > time on my hands so I thought it would be a good thing to look into it. > Though it was (most likely) not the best move I got the new windows and > now I have some troubles but thanks for the information! Glad to > have someone willing to help out, kinda hard to find now a days. Just to reiterate, what you downloaded from AdaCore was an entire suite of tools. The IDE is called GPS. The compiler (GNAT) is a command-line tool, and you can use another editor and still use GNAT. AdaGIDE is a good tool for a beginner. It acts as an IDE for GNAT and will run the compiler for you. GNAT, by default, does not implement standard Ada semantics. In AdaGIDE, you need to check the boxes for integer overflow checking and stack overflow checking. If you use it from the command line, you need some switches: gnatmake -gnato -fstack-check You can also stick in -O2 for optimization and -g for debug information if you like. -- Jeff Carter "I was hobbling along, minding my own business, all of a sudden, up he comes, cures me! One minute I'm a leper with a trade, next minute my livelihood's gone! Not so much as a 'by your leave!' You're cured, mate. Bloody do-gooder!" Monty Python's Life of Brian 76