add optimization options to CFLAGS and FFLAGS in Makefile

This commit is contained in:
Pavel Demin 2020-06-27 18:43:09 +00:00
parent 330445d1d3
commit f5096f8d44
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ FC = gfortran
LD = gfortran
RM = rm -f
CFLAGS = -Wall -O3 -funroll-loops
FFLAGS = -Wall -O3 -funroll-loops
CFLAGS = -Wall -O3 -funroll-loops -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard -ffast-math -fsingle-precision-constant -mvectorize-with-neon-quad
FFLAGS = -Wall -O3 -funroll-loops -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard -ffast-math -fsingle-precision-constant -mvectorize-with-neon-quad
all: $(TARGET)