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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,be9ede6456a2a7ea X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!news2.google.com!postnews.google.com!v18g2000pro.googlegroups.com!not-for-mail From: britt.snodgrass@gmail.com Newsgroups: comp.lang.ada Subject: Re: GNATBench 2.1.0 (free) and file/procedure naming case Date: Mon, 9 Mar 2009 12:50:59 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: NNTP-Posting-Host: 205.175.225.24 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1236628260 7329 127.0.0.1 (9 Mar 2009 19:51:00 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 9 Mar 2009 19:51:00 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: v18g2000pro.googlegroups.com; posting-host=205.175.225.24; posting-account=rdRzuwoAAAAyW3CSBhs_xgfCUJSc1aNt User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; InfoPath.1; .NET CLR 1.1.4322),gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 secproxy04.rockwellcollins.com:8080 (IWSS) Xref: g2news1.google.com comp.lang.ada:4011 Date: 2009-03-09T12:50:59-07:00 List-Id: On Mar 9, 10:41=A0am, John McCabe wrote: > > However the latest thing I have is that GNATBench doesn't appear to > maintain the casing I use for files/folders and procedure. For > example, I put in TestAdaProj as the project name and MyMain as the > main procedure and it creates folders and files called testadaproj and > mymain.adb respectively. Is there something I've done wrong here that > anyone can think of. > Try putting the following in your GPR file: package Naming is for Casing use "mixedcase"; -- otherwise, default is "lowercase" end Naming; This is described in the GNAT User's Guide (section 11.11, Naming Schemes). I haven't tried this myself since I use GNAT's default naming conventions. Regarding GPR files, I've found it better to edit them manually (in Eclipse) rather than use the GNATbench (or GPS) project properties editor. > > Has anyone got any idea what's happening with Hibachi? That seems to > have gone completely dead. I lurk on the Hibachi mailing list. List traffic dropped to near zero long ago, so it is effectively dead. I don't miss it. GNATbench is much better if you are using GNAT as your compiler. - Britt