Skip to content

Commit

Permalink
enable neon extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsc committed Nov 14, 2019
1 parent 2c1faa9 commit 9a0fbdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ include version.mk
CC := arm-linux-gnueabihf-gcc
CXX := arm-linux-gnueabihf-g++
OBJCOPY := arm-linux-gnueabihf-objcopy
CFLAGS := $(EXTRA_FLAGS) -mbig-endian -mcpu=cortex-a7 -mfpu=vfpv4 -std=gnu11 -O3 -pedantic -pedantic-errors -ffixed-r11 -fomit-frame-pointer -Wall -Wextra -Werror -DVERSION_STRING_DATE='$(VERSION_STRING_DATE)'
CXXFLAGS:= $(EXTRA_FLAGS) -mbig-endian -mcpu=cortex-a7 -mfpu=vfpv4 -std=c++11 -O3 -pedantic -pedantic-errors -ffixed-r11 -fomit-frame-pointer -Wall -Wextra -Werror -DVERSION_STRING_DATE='$(VERSION_STRING_DATE)'
CFLAGS := $(EXTRA_FLAGS) -mbig-endian -mcpu=cortex-a7 -mfpu=neon-vfpv4 -std=gnu11 -O3 -pedantic -pedantic-errors -ffixed-r11 -fomit-frame-pointer -Wall -Wextra -Werror -DVERSION_STRING_DATE='$(VERSION_STRING_DATE)'
CXXFLAGS:= $(EXTRA_FLAGS) -mbig-endian -mcpu=cortex-a7 -mfpu=neon-vfpv4 -std=c++11 -O3 -pedantic -pedantic-errors -ffixed-r11 -fomit-frame-pointer -Wall -Wextra -Werror -DVERSION_STRING_DATE='$(VERSION_STRING_DATE)'
LDFLAGS := -static -lrt -s

HOST_CXX := g++
Expand Down

0 comments on commit 9a0fbdb

Please sign in to comment.