I'm struggling to debug an issue with libraries failing to load. The obvious solution is to set the DYLD_LIBRARY_PATH
to the directory that contains the libraries, however for some reason this solution doesn't seem to be taking. I do:
export DYLD_LIBRARY_PATH=<path>
but the variable doesn't appear when I call env
. Strangely enough, it does tab-complete, as in when I do echo $DYLD_<tab>
. What gives?