MariusDrulea

Results 75 comments of MariusDrulea

To further motivate my proposal: I have just configured settings.json yesterday. Today I run a script using the GLMakie plotting library. And obviously, a lot of extra packages appeared as...

Hi, I set breakpoints strictly in my code, nothing else. I have set everything else to "compile". So far I haven't use the compiled mode of the debugger. I just...

So what's happening inside the compiled mode debug? Is my code compiled with -O1 option and without inline? I mean minimally compiled to avoid the interpreter?

> Compiled mode debugging is basically native execution. Anything that's not in compiled mode is run by JuliaInterpreter, which can be orders of magnitude slower. Ok, than I will also...

Question1: If I set a package MyPackage to be compiled in the user_settings.json, and this package depends on other packages like Dep1, Dep2 which are not specified at all in...

Ok, Now I want to implement the compile everything ```*``` **_option_**. This option tells us to scan all the packages and set them to be compiled. The exceptions to be...

The ALL_MODULES_EXCEPT_MAIN is present in the 1.6.30 version so I did a test. It's super easy to use. There is however one problem left: _it does not seem to except...

I did an additional test to check if we can step inside the modules we specify as interpreted. This does not work, I _cannot step inside the `save` function of...

Ok, I merged these two fixing branches together locally. Still the step into `save` does not work. I have checked the log messages of the debugger and filtered by the...

Interesting. I have added some logs. It can be seen the function `function set_compiled_functions_modules!(items::Vector{String})` is called twice. Once for `["ALL_MODULES_EXCEPT_MAIN", "-FileIO", "-FileIO."]` and once for `["ALL_MODULES_EXCEPT_MAIN", "FileIO", "FileIO."]` Is this...