ZUO Zhihua

Results 67 comments of ZUO Zhihua

Yes, I happened to have this problem today as well. Replace the `procedure` in the following example with `subroutine`, and `ford` will not report an error, which is indeed valid...

I remember that some older versions of `ford` can be deployed through the `ford` document of `Fortran-stdlib`. `Fortran-stdlib` has always used the coding paradigm of `submodule + module procedure`. Now...

I mainly use vs code. The existing `fortran-language-server` is written based on python, which can provide me with good code hints and definition jumps, provide all methods and variables (derived...

> The one-way build script is expected to receive inputs via environment variables, and place the compiled libraries in the correct location. I have a good idea, it should be...

I created a `fgsl` fpm package ([zoziha/fgsl-binary-objs](https://github.com/zoziha/fgsl-binary-objs)) with only the `fgsl.mod` file, which is callable under msys2 environment. It is possible to distribute the link library of `fgsl` (libfgsl.dll.a) in...

It seems that there is a `cargo-make` (a cargo plug-in) here, which can make some conditions for judging, maybe we can refer to: https://github.com/sagiegurari/cargo-make#conditions > cargo-make: Rust **task runner** and...

I also agree that we should be careful about publishing binary-only fpm packages, which creates a certain complexity and compatibility. Maybe I think it's more important: How to make the...

The FFTpack library on netlib seems to have only **double precision** and only **one-dimensional** FFT. [netlib/fftpack](http://www.netlib.org/fftpack/) There is a **more complete and updated** fftpack, including 1-dimensional, 2-dimensional, and multi-dimensional real...

> The same running `lfortran -o hw helloworld.f90`. If it needs `clang`, why is this package not installed as dependency? Sorry, I didn't verify this, `lfortran` does rely on `clang`...

@certik `mingw64-lfortran` runs under `bash`, `powershell`, and other Windows OS shell environments: ``` $ lfortran main.f90 -v clang -o main.out main.out.tmp.o -L"C:\msys64\mingw64\bin/../lib" -Wl,-rpath,"C:\msys64\mingw64\bin/../lib" -llfortran_runtime -lm '.' is not recognized as...