5 ms·
I tried with LLDB using `settings set target.process.follow-fork-mode child` but for some reasons I feel like it still exit from the parent process. I also tri
by tonygo 2y ago
I tried with LLDB using `settings set target.process.follow-fork-mode child` but for some reasons I feel like it still exit from the parent process.
I also tried with a long living process: https://github.com/tony-go/antidebug-examples/tree/main/swift https://github.com/tony-go/antidebug-examples/tree/main/swif...
And I got this:
```
(lldb) run
Process 14345 launched: '/anti-debug/swift/build/anti_debug' (arm64)
start pid = 14345
exit parent process for child pid = 14348
continue as child process pid = 14348
Process 14345 exited with status = 0 (0x00000000)
```
The UI did not even appeared as it should.
Maybe I miss something in my LLDB config...
- tonygo 2y agoAlso it could come from a messy thing in the code.