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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,ba550b5d3caa3710 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!out03a.usenetserver.com!news.usenetserver.com!in04.usenetserver.com!news.usenetserver.com!in03.usenetserver.com!news.usenetserver.com!pc03.usenetserver.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail Newsgroups: comp.lang.ada Subject: Re: PalmOS cross-compilers References: From: Stephen Leake Date: Sat, 02 Jun 2007 08:35:06 -0400 Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:b1cgw8iqv8WuMZwuqsvXxWIUzAM= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: b5f67466163fa759e00d417040 Xref: g2news1.google.com comp.lang.ada:16049 Date: 2007-06-02T08:35:06-04:00 List-Id: Justin Gombos writes: > Looking at the archives, it seems JGNAT was the only way to run Ada > software on a Palm at one point. Then later there were reports of > JGNAT falling out of date, and not working well with the newer Java > virtual machines. > > So are there any better options now? > > Someone hinted recently that the Ada runtime engine is not available > for Ada implementations running on PalmOS. How is that possible? > What compiler is that? Since GCC targets the Palm, you can easily build the GCC Ada compiler for the Palm, but without the run-time system. However, 'pragma No_Run_Time' seems to be gone in current versions of GNAT. I don't know if 'pragma Profile (Restricted)' will let you use this compiler without a run-time. You can find out at link time if you've written code that needs the run-time. Just like C :). -- -- Stephe