diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2021-04-17 17:18:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 17:18:50 +0100 |
commit | fbbfb2c1c316674a83acd666754a3fd18b643d84 (patch) | |
tree | fc38bd0d71a615dac4e847e891771b292cfb1e75 /src/fpm_model.f90 | |
parent | 4cbf9194e47991a208cd61b1f3a0a55f0ae16573 (diff) | |
parent | 079e7da06181a6dc9cee6f8f3b1b1c4ebde9e573 (diff) | |
download | fpm-fbbfb2c1c316674a83acd666754a3fd18b643d84.tar.gz fpm-fbbfb2c1c316674a83acd666754a3fd18b643d84.zip |
Merge pull request #433 from LKedward/intel-c
Fix to allow compiling C with Intel CC
Diffstat (limited to 'src/fpm_model.f90')
-rw-r--r-- | src/fpm_model.f90 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fpm_model.f90 b/src/fpm_model.f90 index ec366d6..b8a4143 100644 --- a/src/fpm_model.f90 +++ b/src/fpm_model.f90 @@ -117,6 +117,9 @@ type :: fpm_model_t !> Command line name to invoke fortran compiler character(:), allocatable :: fortran_compiler + !> Command line name to invoke c compiler + character(:), allocatable :: c_compiler + !> Command line flags passed to fortran for compilation character(:), allocatable :: fortran_compile_flags |