Ole Christian Eidheim
Ole Christian Eidheim
Your llvm version is very new, but you gcc version is quite old! This should not affect the result though:) Opening the same 8 files gave me these results on...
I have no experience with those environment variables, but I forgot to mention that libclang parsing is slower on OS X as well. So one might have to decide then,...
Thank you yet again for looking into this. I'll check later those environment variables and try to understand it better.
Have not tested this, don't have a multi-core linux pc available here, but I found some information on the environment variable MALLOC_ARENA_MAX which made some sense (http://man7.org/linux/man-pages/man3/mallopt.3.html). From what I...
Also saw that the git integration is not affecting the cpu and memory usage notably, so it should be safe to use on laptops:)
I just tested `MALLOC_ARENA_MAX` and it did not lead to reduced memory usage, however, running `MALLOC_MMAP_THRESHOLD_=1024 MALLOC_MMAP_MAX_=16777216 juci` worked pretty well, and reduced the memory usage by around 33% for...
Thank you. Regarding lldb crashes, they are mostly related to the debug builds compiled with some optimisation `-O` option. Removing optimisation solves most of the crashes. Also, if there are...
@jaked122 I'm not worried about the lldb crashes when debugging with optimisation flags as this will be improved with later liblldb versions. The same crashes happen in lldb as well,...
I've had the debugging GUI on my TODO list for quite some time. Hopefully, I'll jump into it during the summer. In the meanwhile, please use Run Command in the...
Also, if someone would like to program the debugging GUI, feel free to do so and create a PR on this. I could then focus on the liblldb specific code...