Skip to content

Commit

Permalink
fix: Add missing compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
abensonca committed Jun 20, 2024
1 parent 57fe8bf commit 3be8ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/configure
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ CC = gcc
CFLAGS = -g -O3 -Wall -DMACOSX -DGCC $MFLAG -D_FILE_OFFSET_BITS=64 -fopenmp
F77 = gfortran
FFLAGS:= -Wall -g -O3 -DGFORTRAN -ff2c $MFLAG -D_FILE_OFFSET_BITS=64 -fopenmp
FFLAGS:= -Wall -g -O3 -DGFORTRAN -ff2c $MFLAG -D_FILE_OFFSET_BITS=64 -fopenmp -ffixed-line-length-none
#STATICFLAGS:= -static-libgfortran
STATICFLAGS:= -nodefaultlibs -lSystem -lgcc -lm -lgfortran_static
# static linking of gfortran library to compile for distribution.
Expand Down Expand Up @@ -254,7 +254,7 @@ CFLAGS = -g -O3 -Wall -DMACOSX -DGCC -D_FILE_OFFSET_BITS=64 -fopenmp
# gnu g77 (which assumes no SAVE)
F77 = g77
FFLAGS = -Wimplicit -fbounds-check -g -O3 -DG77 -D_FILE_OFFSET_BITS=64 -fopenmp
FFLAGS = -Wimplicit -fbounds-check -g -O3 -DG77 -D_FILE_OFFSET_BITS=64 -fopenmp -ffixed-line-length-none
#MAKE=gmake
Expand Down

0 comments on commit 3be8ae9

Please sign in to comment.