Ondřej Čertík
Ondřej Čertík
Due to https://github.com/lfortran/lfortran/pull/7842#issuecomment-2993661103, the intent Out doesn't have an equivalent behavior in Python, since for structs with default values we would need to initialize them on function enter, which Python...
And then update tests in LFortran itself to test the latest main, to ensure things will keep working. Right now in LFortran we test a little bit older version of...
Both locally and at a CI I am now getting a warning: ``` [ 35%] Building C object CMakeFiles/fastgpt.dir/linalg_accelerate.c.o /Users/runner/work/fastGPT/fastGPT/linalg_accelerate.c:13:5: warning: 'cblas_sgemm' is deprecated: first deprecated in macOS 13.3 -...
In LLDB I can do: ``` (lldb) p (uintptr_t*)TranslateAddress(src) (uintptr_t *) $1 = 0x00007ffff79be410 ``` In raddbg I can't figure out how to do it:  It says "Calling this...
The code view allows to double click to select the whole word. In the Watch view when editing an expression, the double click doesn't do anything, it seems to work...
Without this it was not clear if make will get executed automatically or not (it does not), so one has to execute it by hand, which this PR makes clear.
When running the CompressedTextures example on macOS, in the build directory: ``` console $ make && ./SDL_gpu_examples [...] [ 2%] Building C object CMakeFiles/SDL_gpu_examples.dir/Examples/CompressedTextures.c.o [ 5%] Linking C executable SDL_gpu_examples...
Builds on top of #9033. Fixes #9030.
```console $ lfortran tests/errors/continue_compilation_1.f90 --continue-compilation ... semantic error: Assigned format (using integer variable as format specifier) is not supported. Use character variables instead. --> tests/errors/continue_compilation_1.f90:451:5 | 451 | print fmt_i2,...
Fixes the MRE in https://github.com/lfortran/lfortran/issues/9030#issuecomment-3647255956, but doesn't fix the full issue, as there is another bug after that. I verified that the added test catches this segfault if the fix...