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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6116e862f283e98c X-Google-Attributes: gid103376,public From: tmoran@bix.com (Tom Moran) Subject: Re: Easy Beginner Question Date: 1997/11/18 Message-ID: <3471bab2.246487@SantaClara01.news.InterNex.Net>#1/1 X-Deja-AN: 290577901 References: <3471626E.3F426877@postoffice.csu.edu.au> Organization: InterNex Information Services 1-800-595-3333 Newsgroups: comp.lang.ada Date: 1997-11-18T00:00:00+00:00 List-Id: >What is the comand to compile and Ada program. There is no such command. Some OSes and IDEs have no command lines at all. The particular way to do a compile on your Linux system depends on your particular compiler, so you'll have to find the answer in its docs. If you are using Gnat, you might try "gnatmake abc" to compile a program in file abc.adb, but of course there might well be compiler options (-gnato to catch, rather than ignore, overflows, comes to mind) that you will want to use. And of course you may need first to set some paths to say where the compiler, its libraries, and your files, are.