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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,ef489aaf7eb31d80,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!n51g2000cwc.googlegroups.com!not-for-mail From: "xaerxess@gmail.com" Newsgroups: comp.lang.ada Subject: Texttools (Linux) - problem during compilation Date: 25 Dec 2006 16:28:58 -0800 Organization: http://groups.google.com Message-ID: <1167092938.402434.195770@n51g2000cwc.googlegroups.com> NNTP-Posting-Host: 83.11.206.35 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" X-Trace: posting.google.com 1167092942 16780 127.0.0.1 (26 Dec 2006 00:29:02 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 26 Dec 2006 00:29:02 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Opera/9.02 (X11; Linux i686; U; Ubuntu; pl),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: n51g2000cwc.googlegroups.com; posting-host=83.11.206.35; posting-account=ez5R5g0AAABFZ1QJ5BmhfPhIEirm1KH1 Xref: g2news2.google.com comp.lang.ada:8012 Date: 2006-12-25T16:28:58-08:00 List-Id: Hi, I want to use texttools ( http://www.pegasoft.ca/tt.html ) in my program and first I checked how to compile an example file. I installed libtexttools-dev via apt-get and then tried to compile the file: $ gnatmake -aI/usr/share/ada/adainclude/texttools -aO/usr/lib/ada/adalib/texttools basic2.adb -largs -ltexttools gnatbind -aO./ -aO/usr/lib/ada/adalib/texttools -I- -x basic2.ali gnatlink -ltexttools basic2.ali /usr/bin/../lib/libtexttools.so: undefined reference to `system__interrupts__install_handlers' /usr/bin/../lib/libtexttools.so: undefined reference to `system__interrupts__register_interrupt_handler' /usr/bin/../lib/libtexttools.so: undefined reference to `system__interrupts___init_proc__7' /usr/bin/../lib/libtexttools.so: undefined reference to `system__tasking__protected_objects__entries__initialize_protection_entries' /usr/bin/../lib/libtexttools.so: undefined reference to `system__tasking__protected_objects__entries__unlock_entries' /usr/bin/../lib/libtexttools.so: undefined reference to `system__tasking__protected_objects__entries__lock_entries' gnatlink: cannot call /usr/bin/gnatgcc gnatmake: *** link failed. What's wrong? Of course, there is a link gnatgcc in /usr/bin/ BTW: Has anybody any experience with using texttools?