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,e36020a4e7d24836,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!goblin1!goblin2!goblin.stu.neva.ru!aioe.org!.POSTED!not-for-mail From: localhost@example.org Newsgroups: comp.lang.ada Subject: How to leave .ali files in original library? Date: Wed, 9 Mar 2011 18:00:36 +0000 (UTC) Organization: Aioe.org NNTP Server Message-ID: NNTP-Posting-Host: 1fBP04fsPqTkkcvlQyUnMA.user.speranza.aioe.org X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.8.2 Xref: g2news1.google.com comp.lang.ada:17998 Date: 2011-03-09T18:00:36+00:00 List-Id: Hi again with another question on building an app using gcc-ada. I'm building against ncurses thanks to Ludovic and Nasser I *think* I created a static executable or maybe not ;) Is there a way to tell for sure? I ran ldd and it doesn't show the curses lib so I think it's included ok but I did get 3 lines of output: linux-vdso.so.1 => (0x00007fff3b1fb000) libc.so.6 => /lib64/libc.so.6 (0x00007f27f34e3000) /lib64/ld-linux-x86-64.so.2 (0x00007f27f3853000) so maybe it's not static after all. What should I do? My question after that is how I can stop all the .ali files from being regenerated in my working directory. They're all in ncurses/lib/ada/adalib already do they really have to be rebuilt/copied into my working directory? I seem to remember a way of avoiding this but I can't find it now. The .o files are also being built. I realize this has to happen but can't it be done in the adalib directory instead of every directory I build an Ada ncurses program? In other words why should the object files be created over and over again.