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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4209c97d4c7b1c36 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-17 08:56:12 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!elnk-pas-nf2!elnk-pas-nf1!newsfeed.earthlink.net!newsfeed2.easynews.com!newsfeed1.easynews.com!easynews.com!easynews!news3.optonline.net!news4.srv.hcvlny.cv.net.POSTED!not-for-mail From: "Bill Sheehan" Newsgroups: comp.lang.ada References: <5OkHa.17943$gs5.11269646@news4.srv.hcvlny.cv.net> <3EEE551A.6050403@spam.com> Subject: Re: GLIDE to GPS conversion X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: Date: Tue, 17 Jun 2003 15:56:08 GMT NNTP-Posting-Host: 68.194.149.158 X-Trace: news4.srv.hcvlny.cv.net 1055865368 68.194.149.158 (Tue, 17 Jun 2003 11:56:08 EDT) NNTP-Posting-Date: Tue, 17 Jun 2003 11:56:08 EDT Organization: Optimum Online Xref: archiver1.google.com comp.lang.ada:39346 Date: 2003-06-17T15:56:08+00:00 List-Id: I have to give ACT credit. They responded to my problem with the following that I'm passing to the group. "We do not currently have such an automatic tool, although we have a design for one, which we'll try and implement asap." The solution sent to me was a manual conversion of my .adp project to a .gpr Taking out some work directory names I made a summary: project T_Exec is for Source_Dirs use ("c:\dir1\dir2\t\sources1\", "c:\dir1\dir2\sources2\", "c:\dir1\dir2\services\", "c:\dir1\dir2\t\", "c:\dir1\dir3\Rtos\"); for Object_Dir use "."; for Main use ("t_exec.adb"); package Compiler is for Default_Switches ("Ada") use ("-gnatq", "-gnatQ", "-mlongcall"); end Compiler; package Linker is for Default_Switches ("Ada") use ("-msoft_float", "-mlongcall"); end Linker; package Ide is for Compiler_Command ("Ada") use "powerpc-wrs-vxworks-gnatmake"; for Debugger_Command use "powerpc-wrs-vxworks-gdb"; end Ide; end T_Exec;