users-prolog
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gplc and linking with other libraries


From: Roberto Bagnara
Subject: gplc and linking with other libraries
Date: Tue, 05 Mar 2002 20:04:13 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020212

Hi there,

I have just started playing with GNU Prolog's foreign language interface
(among other things, I am trying to write a GNU Prolog interface for the
Parma Polyhedra Library, http://www.cs.unipr.it/ppl/).

One of the difficulties I have encountered is with the gplc command:
while it allows to specify extra options for the linker (with -L),
these options are passed as the first ones in the link command.
This would seem to imply that there is no way to link with your
own libraries (in addition to the ones needed by GNU Prolog itself).
In fact, a command like

     gplc -o EXENAME some.pl some.o -L '-Lmylibdir -lmylib'

results in a link command of the form

     gcc -Lmylibdir -lmylib ...

and this is such that the library `libmylib' is simply disregarded.
Is there a workaround for this?
I would like very much to avoid

1) including the entire library in my executable when I need only
   a part of it;
2) having to specify the complete path of libraries (I would like
   the linker to look for them in the appropriate places);
3) linking manually, thus having to guess which library are needed
   by GNU Prolog itself.

Am I imposing an unsatisfiable set of constraints?
Thanks a lot

    Roberto

--
Prof. Roberto Bagnara
Computer Science Group
Department of Mathematics, University of Parma, Italy
http://www.cs.unipr.it/~bagnara/
mailto:address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]