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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ed02a87d9adb53a0,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-01 14:46:45 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!dispose.news.demon.net!demon!newspeer.clara.net!news.clara.net!news5-gui.server.ntli.net!ntli.net!news2-win.server.ntlworld.com.POSTED!not-for-mail From: "chris.danx" Newsgroups: comp.lang.ada Subject: Problem with exes on Windows MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Message-ID: <9OM%6.1796$9K4.651359@news2-win.server.ntlworld.com> Date: Sun, 1 Jul 2001 22:42:41 +0100 NNTP-Posting-Host: 62.252.145.14 X-Complaints-To: abuse@ntlworld.com X-Trace: news2-win.server.ntlworld.com 994023685 62.252.145.14 (Sun, 01 Jul 2001 22:41:25 BST) NNTP-Posting-Date: Sun, 01 Jul 2001 22:41:25 BST Organization: ntlworld News Service Xref: archiver1.google.com comp.lang.ada:9302 Date: 2001-07-01T22:42:41+01:00 List-Id: Hi, I compiled the following program with GNAT 3.13p for Win9X/NT (it uses JEWL by John English). with Jewl.IO; procedure a_wee_test is procedure hello_world is begin Jewl.IO.message (" Hello World "); end hello_world; begin hello_world; end a_wee_test; When i ran it from AdaGIDE it worked ok, however when I went to the program via explorer and double clicked I got nothing what so ever -- there appeared to be no message box, indeed no action, it was like the program just exited after it started or didn't start at all. This hasn't happened before, usually i can run programs built with GNAT outside the control of the compiler. Am I missing a linker switch or something? I'm looking in the GNAT ref and user manuals at present, to see what options are available but so far nothing, I'll keep looking. Thanks, Chris Campbell