10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-31 19:23:50 +01:00

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

View File

@ -3,13 +3,14 @@
# #
# -ffree-line-length-none : Needed for IRPF90 which produces long lines # -ffree-line-length-none : Needed for IRPF90 which produces long lines
# -lblas -llapack : Link with libblas and liblapack libraries provided by the system # -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 # --align=32 : Align all provided arrays on a 32-byte boundary
# #
# #
[COMMON] [COMMON]
FC : gfortran -ffree-line-length-none FC : gfortran -ffree-line-length-none -I .
LAPACK_LIB : -lblas -llapack LAPACK_LIB : -lblas -llapack
IRPF90 : irpf90 IRPF90 : irpf90
IRPF90_FLAGS : --ninja --align=32 IRPF90_FLAGS : --ninja --align=32