I am looking for a command which would create complementary file to stripped binary, which was created using command: strip --strip-all foo In fact I would be happy having procedure for creating two part executable: one part being entirely stripped executable and the second part containing all symbols. Stripped executable should have also link to symbol file. The procedure would be analogous to to the one for debug symbols described in objcopy man page:I am looking for a command which would create c