Problem building 1.86.0 on Darwin due to problematic usage of DYLD_LIBRARY_PATH in bootstrap #139400
Labels
C-bug
Category: This is a bug.
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
T-bootstrap
Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Summary
Bootstrap is placing system directories such as
/usr/local/lib
intoDYLD_LIBRARY_PATH
, which allows stem name matching of libraries and can result in the incorrect version of system libraries being located during a lookup.Here is the case I ran into:
Normally, the dynamic linker locates libraries using the absolute path recorded in an executable or another dynamic library, but setting
DYLD_LIBRARY_PATH
subverts that, because those directories are searched first using stem matching. This is intended to allow the use of special libraries, but it is not clear why bootstrap is placing a system library location (/usr/local/lib
) into the path. In this case, the failure is due to the fact that the systemImageIO
framework has its own copy oflibjpeg
, but putting/usr/local/lib
inDYLD_LIBRARY_PATH
causes/usr/local/lib/libjpeg.dylib
to be located first using stem matching.I was able to work around the problem by changing bootstrap to instead use
DYLD_FALLBACK_LIBRARY_PATH
and setting that to the appropriate search path in the environment before invoking the build. This works becauseDYLD_FALLBACK_LIBRARY_PATH
is searched after the pathname searching is performed.It is probably okay to place special build directories needed by bootstrap into
DYLD_LIBRARY_PATH
, but don't put any other locations there.Command used
DESTDIR=/tmp/dst.rustc x.py install
Operating system
macOS 10.12.6
HEAD
Tarball build of 1.86.0:
05f9846
Additional context
Build Log
The text was updated successfully, but these errors were encountered: