This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if you want to print an char* via lldb, lldb only prints the first about 300 characters. to print the complete one just type: | |
`set set target.max-string-summary-length 10000` | |
in the lldb command line. now the first 10000 characters are print via: | |
`p someCharPointer` | |
(source: http://www.web0.at/lldb-print-complete-char-string/) |