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: a07f3367d7,d3eb5330da5c51c7 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.88.41 with SMTP id bd9mr1672853pab.47.1344321914810; Mon, 06 Aug 2012 23:45:14 -0700 (PDT) Path: p10ni2833786pbh.1!nntp.google.com!border1.nntp.dca.giganews.com!border4.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!ctu-peer!ctu-gate!news.nctu.edu.tw!usenet.stanford.edu!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: awdorrin Newsgroups: comp.lang.ada Subject: Re: gnatpp error message Date: Thu, 2 Aug 2012 05:40:25 -0700 (PDT) Organization: http://groups.google.com Message-ID: <5fa192b3-0996-4bcf-84f2-32290207b67c@googlegroups.com> References: <303ab876-e420-41f7-86ce-6156175893d1@googlegroups.com> NNTP-Posting-Host: 192.35.35.34 Mime-Version: 1.0 X-Trace: posting.google.com 1343911323 20139 127.0.0.1 (2 Aug 2012 12:42:03 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 2 Aug 2012 12:42:03 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=192.35.35.34; posting-account=YkFdLgoAAADpWnfCBA6ZXMWTz2zHNd0j User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-08-02T05:40:25-07:00 List-Id: I have a script which has a list of directories containing Ada source code. The script first uses 'gnatname' to generate a pragma config file, to match up the legacy naming scheme to the package names. gnatname ${DIRS} -c cfg.adc "*_s.ada" "*_b.ada" "*.ada" (Where DIRS contains a list of directories with the -d argument) I then have a loop which goes into each directory and executes the 'gnatpp' command: gnatpp -M120 -i2 -w -v -dd -gnatec=./cfg.adc ${INCS} *.ada (Where INCS is a list of directories with the -I argument) I have 487 Ada source files, 8 files produce the 'Pre_Operation failed' exception.