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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8ff101edf03f2a67,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-06-07 05:06:57 PST Path: archiver1.google.com!newsfeed.google.com!postnews1.google.com!not-for-mail From: lin@post.com (Lin) Newsgroups: comp.lang.ada Subject: generate stub Date: 7 Jun 2001 05:06:56 -0700 Organization: http://groups.google.com/ Message-ID: <86772402.0106070406.46a60d9c@posting.google.com> NNTP-Posting-Host: 144.32.177.167 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 991915617 3265 127.0.0.1 (7 Jun 2001 12:06:57 GMT) X-Complaints-To: groups-support@google.com NNTP-Posting-Date: 7 Jun 2001 12:06:57 GMT Xref: archiver1.google.com comp.lang.ada:8308 Date: 2001-06-07T12:06:57+00:00 List-Id: Under the Gnat3.11p on Windows, I want to compile the package "remote" to generate client stub and server skeleton. Following the rule that the client stub package body should be generated by "remote.ads", and the server skeloton should be generated by "remote.adb". I try to use the following commands, but fail, any clues? ------ gcc -c -gnatzc %dir1%\remote.ads copy remote.* %client%\remote.adb gcc -c -gnatzr %dir1%\remote.adb copy remote.* %server%\remote.adb ------ Thanks.