Well...very often the solution to a problem is the simplest one.
As I wrote I used the command

gcc -L../glpk/lib -lglpk main.c cplex.c -o proximityglpk

to compile. Like someone had noticed, I'm new on compiling and linking
manually (usually I use XCode) and I made a stupid mistake. The flag of the
libraries must be placed after the object to which you want to link the
libraries. So the command

gcc main.c cplex.c -L../glpk/lib -lglpk -lm -o proximityglpk

solved my problem. Now I have an executable that can run on the computing
server!!
I'm sure that almost all of you know how to put the libraries flags,
probably no one noticed that.
But thank you very much for all your help.

Gioker


2013/4/11 xypron <[email protected]>

>
> Hello Giorgio
>
>
> Giorgio Sartor wrote:
> >
> > However I successfully compiled the GLPK library in the server. Using
> > "--prefix=PATH" with "configure" I was able to tell GLPK where to put my
> > libraries.
> >
>
> now use
> export LD_LIBRARY_PATH=PATH
> to make the library available.
>
> See
> http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html#AEN80
>
> Best regards
>
> Heinrich Schuchardt
> --
> View this message in context:
> http://old.nabble.com/ELF-Library-tp35277407p35280167.html
> Sent from the Gnu - GLPK - Help mailing list archive at Nabble.com.
>
>
> _______________________________________________
> Help-glpk mailing list
> [email protected]
> https://lists.gnu.org/mailman/listinfo/help-glpk
>
_______________________________________________
Help-glpk mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-glpk

Reply via email to