This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: What is the meaning/purpose of the â=â that sometimes appears in the SEARCH_DIR command in binutils' ldscripts?


On 07 Jul 2015 07:50, Cary Coutant wrote:
> > What is the meaning/purpose of the â=â that sometimes appears in the SEARCH_DIR command in binutils' ldscripts?
> >
> > I've searched the documentation, but cannot find an answer.  I've posted the same question on StackOverflow (http://stackoverflow.com/questions/31237263/what-is-the-meaning-purpose-of-the-that-sometimes-appears-in-the-search-dir), but have not received any feedback.  Hopefully, someone here can help me.  Below is the full question I am asking:
> >
> > When I build binutils, the ldscripts folder contains several files that are used by ld to determine how to link objects for a particular platform. In the scripts I see lines like:
> >
> > SEARCH_DIR("/Volumes/CaseSensitive/Developer/XCF/x86_64-pc-linux-gnu/gcc47/x86_64-pc-linux-gnu/lib64");
> > SEARCH_DIR("=/usr/local/lib64"); SEARCH_DIR("=/lib64"); SEARCH_DIR("=/usr/lib64"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
> >
> > What is the meaning/purpose of the "=" that appears in the SEARCH_DIR command?
> 
> The '=' causes ld to add the sysroot to the path. I suspect this is
> undocumented because it's an internal implementation detail intended
> only for the linker-provided script templates.

the latest manual does document it.  the one referenced is from binutils-2.12 
which long predates this functionality.

-L searchdir
--library-path=searchdir
...
If searchdir begins with =, then the = will be replaced by the sysroot prefix, 
controlled by the `--sysroot' option, or specified when the linker is 
configured.
...
The paths can also be specified in a link script with the SEARCH_DIR command. 
Directories specified this way are searched at the point in which the linker 
script appears in the command line.

https://sourceware.org/binutils/docs/ld/Options.html
-mike

Attachment: signature.asc
Description: Digital signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]