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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5bd7fd28a38b2403 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-02-09 09:58:12 PST Path: supernews.google.com!sn-xit-02!supernews.com!nntp-relay.ihug.net!ihug.co.nz!news-hog.berkeley.edu!newsfeed.berkeley.edu!ucberkeley!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Ada Compiler Benchmarking Date: 09 Feb 2001 12:54:39 -0500 Organization: NASA Goddard Space Flight Center Message-ID: References: NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 981742079 7753 128.183.220.71 (9 Feb 2001 18:07:59 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 9 Feb 2001 18:07:59 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.6 Xref: supernews.google.com comp.lang.ada:5074 Date: 2001-02-09T18:07:59+00:00 List-Id: "Jeff Susanj" writes: > Also, we are > looking for an Integrated Development Environment that will support both Ada > and C++ as our product has elements written in both languages. We know of > Green Hills' AdaMulti. Are there others? Depends on exactly what you mean by "Integrated Development Environment". Also depends on the target and host. Also depends on how tightly integrated the Ada and C++ are. The GNU tool set will let you compile and link together Ada and C++ code. You can import C++ classes as Ada types and vice versa (with some hard work writing the pragmas by hand). The GNU Emacs editor will help you edit the code and run makefiles. Support is available for the Ada side of the GNU compiler and Emacs, from ACT (http://www.gnat.com). RedHat may sell support for the C++ side; I've not checked. Gnu CVS integrates nicely for source code control. It all runs on Linux, Win32, Solaris, AIX, etc. I consider this the best IDE available. Rational sells a similar setup, but I'm not sure you can import C++ classes into Ada (I beleive only the GNAT tools can do that). DDCI also sells a mixed Ada/C++ environment. Hope this helps. -- -- Stephe