goghino-archive / matlabSchur

Matlab interface to optimal control problem parallel solver, that uses Schur complement decomposition
1 stars 0 forks source link

Check which libraries are opened at runtime #4

Open goghino opened 8 years ago

goghino commented 8 years ago

Try listing which libraries are opened at runtime via ldopen (they are not shown in ldd output): cat /proc/NNNN/maps | awk '{print $6}' | grep '\.so' | sort | uniq Or, with strace: strace CMD.... 2>&1 | grep '^open(".*\.so"'

Stack Owerflow