[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Compilation error of xorriso on MacOSX
From: |
Thomas Schmitt |
Subject: |
Re: Compilation error of xorriso on MacOSX |
Date: |
Tue, 13 Apr 2010 14:18:15 +0200 |
Hi,
Yves Blusseau wrote:
> I have the latest readline library (6.1) installed on my MacOSX
> /opt/local/lib/libreadline.a
> But i think configure have tried to use the one in the standard path
> (/usr/lib):
> Perhaps i can use an option of configure or environnement variable to
> "force" the linker ?
Good question.
My autotools knowledge grows around some vacuum
bubbles since a few years. Much of it is still
a riddle to me.
I understand that variables CPPFLAGS, CFLAGS,
LDFLAGS, LIBS directly influence the compilation
command.
Reading man ld on GNU/Linux
-Lsearchdir [...]
The directories are searched in the order in
which they are specified on the command line.
Directories specified on the command line are
searched before the default directories.
i would try
make clean
export LDFLAGS="-L/opt/local/lib"
./configure ...options...
make
So you should read the documentation of your
linker for a similar promise.
Have a nice day :)
Thomas