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=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:aed:37c4:: with SMTP id j62mr8155057qtb.279.1585920488182; Fri, 03 Apr 2020 06:28:08 -0700 (PDT) X-Received: by 2002:a54:4083:: with SMTP id i3mr2974446oii.157.1585920487778; Fri, 03 Apr 2020 06:28:07 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!goblin3!goblin1!goblin.stu.neva.ru!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 3 Apr 2020 06:28:07 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=68.191.223.106; posting-account=IkfcKQoAAACG1YkW43S7OnbnVk_y5n_N NNTP-Posting-Host: 68.191.223.106 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <8cf791ec-e0b2-4bf4-951e-d83bee67256b@googlegroups.com> Subject: Using TDM-GCC with ADAGIDE and GWindows/GNATCOM From: Fionn MacCumhaill Injection-Date: Fri, 03 Apr 2020 13:28:08 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:58297 Date: 2020-04-03T06:28:07-07:00 List-Id: I have been using the TDM-GCC 32-bit Ada compiler for several years now wit= h the AdaGIDE IDE, which is now showing its age - it uses gnatmake for buil= ding. TDM-GCC has been stalled at the gcc 5.1 release until quite recently,= when a gcc 9.2 release appeared.=20 For a long time, every binary gcc release for Windows that I have seen has = been configured with --disable-win32-registry. In the gcc 5.1 release, the = Ada compiler build ignored that option. Almost all of my development projec= ts use GWindows and I have been using a Gwindows tool, gnatreg, which uses = the Windows registry to let the Ada compiler organize directories containin= g various libraries. I have one which contains a set of highly-specialized = extensions to GWindows; another one contains Dmitry Kazakov's Simple Compon= ents, and a few others. At some point between gcc 5.1 and gcc 9.2, the Ada compiler went consistent= with the rest of the gcc compilers and ditched the Windows registry. I'm now trying to use environment variables like ADA_INCLUDE_PATH and ADA_O= BJECTS_PATH, which I have created with the same directories that I used wit= h gnatreg, but it appears that I need more than those - my first attempt to= build a program with AdaGIDE failed with the Ada compiler trying unsuccess= fully to compile pieces of GWindows and GNATCOM into the same directory as = my program. I'm missing something here, but I'm not sure what it is. Ideas?