Recently upgraded to the latest El Cap beta 15A216g. I have several build steps (Qt/clang/make/etc) that rely on DYLD_LIBRARY_PATH being set so that the proper libraries can be found. If I do this:
$ DYLD_LIBRARY_PATH=/path/to/libicu make
uic /Users/gtoronto/build/test/test.ui
dyld: Library not loaded: libicui18n.46.dylib
Referenced from: /usr/local/Qt-5.2.1/lib/QtCore.framework/Versions/5/QtCore
Reason: image not found
However if I do this:
$ DYLD_LIBRARY_PATH=/path/to/libicu uic /Users/gtoronto/build/test/test.ui
Then the file gets generated correctly. This started happening only when upgrading El Cap.