[lldb-dev] Canonicalize armv6l and armv7l to v6 and v7

2016-01-08 Thread William Dillon via lldb-dev
Hi all, I have a small patch that fixes an issue that prevents use of the Swift REPL on arm-linux. When working with targets that the OS presents as armv7l, for example, there is an inconsistency when the architecture sub-type is parsed. Detecting this condition and removing the ā€˜l’ fixes it.

[lldb-dev] Hang during attach

2016-01-08 Thread David Jones via lldb-dev
I have some code which worked under LLVM+LLDB 3.6.0 which runs as follows: its purpose is to run some code, and print a backtrace if the code segfaults. My approach was: - fork - the child runs the main part of the program. - the parent creates a debugger and attaches to the child. The child is con