Solve bug in gfortran. Need to add -I . But now we have warning...

This commit is contained in:
Thomas Applencourt 2015-06-03 11:32:10 +02:00
parent 5812341787
commit 7a0dd7a399
1 changed files with 3 additions and 2 deletions

View File

@ -3,13 +3,14 @@
#
# -ffree-line-length-none : Needed for IRPF90 which produces long lines
# -lblas -llapack : Link with libblas and liblapack libraries provided by the system
# -I . : Include the curent directory (Mandatory)
#
# --ninja : Allow the utilisation of ninja. It is mandatory!
# --ninja : Allow the utilisation of ninja. (Mandatory)
# --align=32 : Align all provided arrays on a 32-byte boundary
#
#
[COMMON]
FC : gfortran -ffree-line-length-none
FC : gfortran -ffree-line-length-none -I .
LAPACK_LIB : -lblas -llapack
IRPF90 : irpf90
IRPF90_FLAGS : --ninja --align=32