Skip to content

Latest commit

 

History

History
28 lines (13 loc) · 352 Bytes

File metadata and controls

28 lines (13 loc) · 352 Bytes

Question 72

Find out the ld option to automatically strip symbol table after linking.

Answer

man ld suggests -s option:

-s
--strip-all
   Omit all symbol information from the output file.

-S
--strip-debug
   Omit debugger symbol information (but not all symbols) from the output file.

prev +++ next