Ondřej Čertík
Ondřej Čertík
https://github.com/lfortran/lfortran/issues/4919 I can reproduce it locally by installing micromamba and trying to activate it: ```console ~$ cmd /c 'C:\Users\ondrejcertik\AppData\Roaming\mamba\Scripts\activate.bat' C:\Users\ondrejcertik>set "__mamba_filename=micromamba.exe" C:\Users\ondrejcertik>set "__mamba_filename=micromamba.exe" C:\Users\ondrejcertik>!__mamba_name! activate '!__mamba_name!' is not recognized as...
Shell url: https://github.com/prefix-dev/shell/ I tested on macOS and Windows. Before this PR on Windows: $ python -c "import shellingham; print(shellingham.detect_shell())" ('cmd', 'C:\\Windows\\System32\\cmd.exe') With this PR on Windows: $ python -c...
Here is documentation how to make changes to `libasr`. This should be moved to README and our documentation. To make changes to the `libasr/src/libasr` directory, simply make changes there and...
Due to the sync in https://github.com/lcompilers/lpython/pull/2836 we had to disable some tests in integration tests. Let's enable them again, one by one, by porting the implementation from the old version...
I am using Ubuntu (WSL on Windows). The default `git diff` is immediate, while `delta` has a noticeable lag. As a rule of thumb, anything under 30ms feels immediate, but...
#315 removed `-ffast-math` from default flags because it can cause problems. However, I still want to use it in my projects that work with it and makes them a lot...
Many Fortran codes use MPI and we should teach `fpm` about it and support it natively. There are two main approaches to it: * Use the mpi compiler wrappers such...
Currently the Haskell based fpm is compiling things directly, just like Cargo does it. That's the best default. (The "archived" Rust based fpm was generating CMake.) However, until `fpm` is...
See https://github.com/lfortran/lfortran/pull/7726
```console fortran/examples(main)$ ls asr.f90 chat_01.f90 cmdline.f90 expr2.f90 project1 project2 project3 lfortran/examples(main)$ lfortran expr2.f90 25 lfortran/examples(main)$ ls asr.f90 cmdline.f90 expr2.out lfortran-language-server.log project2 chat_01.f90 expr2.f90 expr2.tmp.o project1 project3 ``` The LSP log...