Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-23 | Implement info_srcfile_short() | Ondřej Čertík | |
2020-12-23 | Indent subroutine bodies | Ondřej Čertík | |
2020-12-23 | Remove str() implementation for real | Ondřej Čertík | |
It is not needed at the moment, but it will have to be put back in once we extract str() into a dedicated string manipulation library (or stdlib). | |||
2020-12-23 | Print unit_type as a string | Ondřej Čertík | |
2020-12-23 | Print target_type as a string | Ondřej Čertík | |
2020-12-23 | Print unit_scope as a string instead of a number | Ondřej Čertík | |
2020-12-22 | Add a `--show-model` option to `build` | Ondřej Čertík | |
2020-12-22 | Add str() to convert int/real/logical to strings | Ondřej Čertík | |
2020-12-20 | Merge pull request #315 from LKedward/remove-default-fast-math | Laurence Kedward | |
Remove: -ffast-math in gfortran default release flags | |||
2020-12-18 | Remove -ffast-math from Haskell fpm default release flags | LKedward | |
2020-12-18 | Merge pull request #307 from LKedward/fix-object-collision | Laurence Kedward | |
Fix: program object file collision | |||
2020-12-18 | Merge pull request #257 from awvwgk/install | Sebastian Ehlert | |
Implement fpm-install command | |||
2020-12-18 | Remove: -ffast-math in gfortran default release flags | LKedward | |
2020-12-16 | Bump patch number for new release | LKedward | |
2020-12-16 | Revert unnecessary changes for PR | LKedward | |
2020-12-16 | Fix: collision between app and example executables of the same name | LKedward | |
Use a separate example subdirectory in 'build' to store example executables. | |||
2020-12-15 | Update: with_example demo to test for object collision | LKedward | |
2020-12-15 | Fix: name collision between program objects | LKedward | |
Simplify object naming rules to avoid issue where programs in different top-level folders can have the same object file name. Fixes #305 | |||
2020-12-14 | Implement fpm install --list to see installable targets | Sebastian Ehlert | |
2020-12-14 | Merge pull request #294 from LKedward/add-f-suffix | Laurence Kedward | |
Add: support for detecting .f and .F files | |||
2020-12-14 | Update: str_ends_with as pure functions | Laurence Kedward | |
Co-authored-by: Milan Curcic <caomaco@gmail.com> | |||
2020-12-14 | Merge pull request #289 from everythingfunctional/bootstrap_compiler_support | Brad Richardson | |
Add support for same compilers as Fortran version to Haskell version | |||
2020-12-13 | Check if the package is actually installable for fpm-install | Sebastian Ehlert | |
2020-12-13 | Add fpm-install to cli help page | Sebastian Ehlert | |
2020-12-12 | Merge pull request #303 from LKedward/fix-parsing | Sebastian Ehlert | |
Fixes to source parsing | |||
2020-12-12 | Merge pull request #304 from awvwgk/manifest-doc | Laurence Kedward | |
Remove note on not supported dependencies in program targets | |||
2020-12-12 | Remove note on not supported dependencies in program targets | Sebastian Ehlert | |
2020-12-12 | Merge pull request #300 from urbanjost/nocoarray | Laurence Kedward | |
Remove -coarray=single option from ifort compiler default options | |||
2020-12-12 | Fix: Ignore empty source files | LKedward | |
Targets not generated for empty source files | |||
2020-12-12 | Fix: source parsing | LKedward | |
Fixes issue where assignment statements with variables called 'program' and 'module' are detected as program and module declaration statements. | |||
2020-12-11 | Remove -coarray=single option from ifort compiler default options | init current directory[i] | |
With the intel compiler ifort(1) use of the -coarray=single creates an executable with images instead of just allowing the coarray syntax as with the GNU gfortran compiler so it is being removed as a default option and will be implemented via a more general option allowing for user-specified compiler options. As it is, use of the option requires developer platforms to support auxiliary libraries not always available, and coarray does not appear to be on all platforms supported by ifort (e.g. MacOS). 2020-12-11 | |||
2020-12-10 | feat(boostrap-ifort): remove coarray option from ifort | Brad Richardson | |
2020-12-10 | feat(bootstrap): try multiple ways to get compiler version info | Brad Richardson | |
2020-12-10 | Add fpm-install to fpm --list output | Sebastian Ehlert | |
- update documentation to include default settings | |||
2020-12-10 | Try to use local install path with fallback to platform defaults | Sebastian Ehlert | |
- use $HOME/.local as user prefix on Unix platforms (fallback is /usr/local) - use %APPDATA%\local as user prefix on Windows (fallback is C:\) | |||
2020-12-10 | Add fpm-install command to fpm-manual | Sebastian Ehlert | |
2020-12-10 | Add unit tests for installer command | Sebastian Ehlert | |
- abstract some platform specifics in the unit tests | |||
2020-12-10 | Let fpm install itself on CI-runs | Sebastian Ehlert | |
2020-12-10 | Extend documentation and add tests for install configuration | Sebastian Ehlert | |
2020-12-10 | Implement fpm-install command | Sebastian Ehlert | |
- allow installing of executables - optionally install library and modules if specified in manifest - add install table to manifest reference | |||
2020-12-10 | Merge pull request #280 from awvwgk/example | Sebastian Ehlert | |
Create specification for example section and implement example applications for Fortran and Haskell version | |||
2020-12-10 | Include example programs in dependency tree | Sebastian Ehlert | |
2020-12-10 | Check for duplicates between executable and example targets | Sebastian Ehlert | |
2020-12-10 | Add build.auto-examples to manifest reference | Sebastian Ehlert | |
2020-12-10 | Use correct option to auto-discover example programs | Sebastian Ehlert | |
Co-authored-by: Laurence Kedward <laurence.kedward@bristol.ac.uk> | |||
2020-12-10 | Implement example executables also for Haskell fpm | Sebastian Ehlert | |
2020-12-10 | Implement example applications in Fortran fpm | Sebastian Ehlert | |
2020-12-10 | Create specification for example section | Sebastian Ehlert | |
2020-12-10 | Dependency handling (#266) | Sebastian Ehlert | |
- create a dependency tree data type with serde functionality - allow translation from and to TOML of dependency tree - test round trips for dependency cache - implement iterative fetching of each dependency level - update dependencies in fpm-update (rudimentary implementation only) - allow removing the cache from the command line - use dependency tree for fpm-build model - add fpm-update to fpm-help/fpm-list output | |||
2020-12-10 | Implement check for duplicated program names (#286) | Sebastian Ehlert | |
- check within an executable/test array for duplicate programs - also check that the program name is not empty or contains ascii control chars |