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=2.0 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,973b2ff14841b514,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.228.227 with SMTP id sl3mr8028923pbc.5.1341449045743; Wed, 04 Jul 2012 17:44:05 -0700 (PDT) Path: l9ni10938pbj.0!nntp.google.com!news1.google.com!goblin1!goblin2!goblin.stu.neva.ru!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: what to use in place of old gnatbl in newer GNAT ? Date: Wed, 04 Jul 2012 19:44:01 -0500 Organization: Aioe.org NNTP Server Message-ID: Reply-To: nma@12000.org NNTP-Posting-Host: /9Ior3ZloQ1Tx0EySzmEaA.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 X-Notice: Filtered by postfilter v. 0.8.2 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Date: 2012-07-04T19:44:01-05:00 List-Id: 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. I was wondering if someone knows what is the correct sequence of gnat 2012 commands to replace gnatbl with? Or better, is there a way to download gnatbl to use with gnat 2012? I googled and not able to find one. thanks, --Nasser