Jim, Jonathan, Dave:
Jim was having autoquack errors of the kind:
libstdc++.so.6: version 'GLIBCXX_3.4.20' not found
The solution is to LD_PRELOAD a path the OS version of this file at the time matlab is started.
The Debian8 path for this file is /usr/lib/x86_64-linux-gnu/libstdc++.so.6, and running the command strings
on it verifies it contains GLIBCXX_3.4.20
strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6|grep GLIBCXX_3.4.20
GLIBCXX_3.4.20
The command to start matlab and have autoquack work is:
LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 matlab