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,973b2ff14841b514 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.241.162 with SMTP id wj2mr9047515pbc.2.1341477532905; Thu, 05 Jul 2012 01:38:52 -0700 (PDT) Path: l9ni10938pbj.0!nntp.google.com!news1.google.com!goblin1!goblin.stu.neva.ru!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: what to use in place of old gnatbl in newer GNAT ? Date: Thu, 05 Jul 2012 09:38:53 +0100 Organization: A noiseless patient Spider Message-ID: References: Mime-Version: 1.0 Injection-Info: mx04.eternal-september.org; posting-host="7ys5Ashmgz3eYqTv09tHDA"; logging-data="5567"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX199sVZGfchqjzePtO5pyp6Q5g6dMkNnad4=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (darwin) Cancel-Lock: sha1:dlA+PBQIGifh3nxdVxefTLL5FW4= sha1:z+6ZmQcRgOId9obQRq6pTdLuB5I= Content-Type: text/plain Date: 2012-07-05T09:38:53+01:00 List-Id: "Nasser M. Abbasi" writes: > I am trying to build some tests for the ada lapack binding that I > obtained from > > ftp://ftp.cs.kuleuven.be/pub/Ada-Belgium/mirrors/gnu-ada/OLD/contrib/lapack-ada/ > > One of the tests (in the folder lapada/test/interf/ after extracting > the above tar file) uses a Makefile which uses an old GNAT command > which is no longer available in newer gnat 2012. > > This command is gnatbl as described here > > http://www.adahome.com/Resources/Compilers/GNAT-info.html#3 > > The makefile does this: > > ------------------ > cxbi: cxbi.ali ifinc.o > gnatbl cxbi.ali ifinc.o $(LIBF) > ------------------- > > So, I need to replace the above command based on what I > understood gnatbl did. But my attempts to that all are > not working (trying gnatbind/gnatlink, gnatmake, etc...) I > am not sure how to duplicate what the above line is supposed > to be doing. My $(LIBF) is > > LIBF = -lgfortran -lm -static > > I am not really familiar with details of these commands. I only use > gnatmake. Does the EXAMPLES section of http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi?coll=0650&db=man&fname=/usr/share/catman/u_man/cat1/gnatbl.z help?