urbanjost

Results 160 comments of urbanjost

I tend to break my tests into a confidence test that is very quick but exercises a few key features, a collection of short tests that do coverage, and what...

Yes, noticed that too but you can do an "export OSTYPE" and "unset OS" as a work-around in your .bashrc as a work-around for Cygwin. If `fpm` is to support...

In ```bash https://github.com/urbanjost/M_io ``` I have two routines (which(3f) and separator(3f)) which might be useful, but I have not tested them in several of those environments. The separator procedure tries...

If the two libraries and the application are developed independently, the approach is assumed that there are three top project directories, and that the app uses the two other projects...

As an example of creating three directories (on a *nix system with bash, but the concept works on all supported platforms) and using directory B and C as dependencies of...

I think these steps would be closest for what you were originally entertaining: ```text myproject ├── app │   └── main.f90 ├── fpm.toml ├── lib │   ├── mylib │   │   ├──...

I think the proposed PR #608 satisfied the original post without introducing some of the perils associated with using environment variables as an opt-in is required, and easily allows setting...

Looking at the code, it looks like instead of adding new code to split the commands that it would work to say once over a certain size to use a...

In my own environment I use a command (ccall) for programs (not for libraries, there is something else for that) ```text $ ccall --help untitled() untitled() NAME ccall(1) - identifies...

bash-shell completion scripts (using complete(1) and compgen(1)) would be very nice, and bash is almost ubiquitous except for some MSWindows environments. It could proceed as a separate project and not...