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,9222093fc7fb4ecb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-30 14:21:07 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!cpk-news-hub1.bbnplanet.com!chcgil2-snf1.gtei.net!news.gtei.net!news.huji.ac.il!not-for-mail From: "Ehud Lamm" Newsgroups: comp.lang.ada Subject: Re: About Interfacing Ada to other languages. Date: Tue, 31 Jul 2001 00:13:13 +0300 Organization: The Hebrew University of Jerusalem Message-ID: <9k4in0$e52$1@news.huji.ac.il> References: NNTP-Posting-Host: di4-45.dialin.huji.ac.il X-Trace: news.huji.ac.il 996527648 14498 132.64.14.45 (30 Jul 2001 21:14:08 GMT) X-Complaints-To: abuse@news.huji.ac.il NNTP-Posting-Date: Mon, 30 Jul 2001 21:14:08 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Xref: archiver1.google.com comp.lang.ada:10784 Date: 2001-07-31T00:13:13+03:00 List-Id: Didier Utheza wrote in message news:Pine.A41.4.10.10107301302040.93338-100000@acstmp.bu.edu... > Hello everyone, > I would like to interface Ada to Prolog and Eiffel. I cannot find extended > information on the topic besides the ref. manual (its reading is more for > knowledgeable people on the subject). Can anyone orient me toward some > documentations or books to consult? > Thanks in advance. > Didier Utheza. > These are not languages for which the Ada RM defines Interface packages, whihc make life easier and portable.(you have C, Cobol and Fortran). I guess the best apporach is to check whether the Eiffel/Prolog implementations you want to use have some C interface, and use that to connect to the Ada program (via Interfaces.C). Another apporach, these days, is to use a component architecture, like COM, and then utilize something like GNATCOM, which allows you to interface to a COM component from Ada. (I thin that if you paln to target a JVM environment you may some more options, but I haven't really checked). Maybe if you give more details someone would be able to give more specific advice. Ehud Lamm