I reinstalled my ubuntu 14.04 and Qt 5.4.1 and Qtcreator.
Qt 5.4.1 was built from source with \"-opensource -nomake-test -nomake-example\" configure options.
'This application failed to start because it could not find or load the Qt platform plugin "xcb".'
See the accompanying web page, scroll down to heading "Qt Plugins". See first paragraph.
libqxcb.so is required, even if you link the rest statically.
http://doc.qt.io/qt-5/linux-deployment.html#application-dependencies
Qt have probably written their source code software to work in the following way: Instead of allowing libqxcb.so to be loaded at startup automatically (using rpath's) they use a dlopen() function to load it, as part of their QPA function set, soon after main() begins.
So this completely disregards our attempt to include all the "xcb" functions statically.
If their dlopen() fails they just trot out their error message we all know and hate, and then call signal 6 to abort it (quite unnecessarily) instead of exiting normally.