In libraryopt-1.0.1/src/libindex function DynamicExpression() it expects a space character before the version; unfortunately that doesn't happen with current objdump (version 2.16.1).
I fixed this by making the space character optional (there is anyway a tab before that).
Was: version = ' +(?P[^ ]*) +'
New: version = ' *(?P[^ ]*) +'
Without this fix, libindex fails...
2007-09-25 22:57:21 UTC in Library Optimizer