From a2724c3494d19ca3fc74983044f05801637011b4 Mon Sep 17 00:00:00 2001 From: Pete Warden Date: Sun, 17 May 2015 16:39:27 -0700 Subject: [PATCH] Added Beaglebone Black support --- source/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/Makefile b/source/Makefile index afa9168..27b110d 100644 --- a/source/Makefile +++ b/source/Makefile @@ -49,6 +49,15 @@ LIBCPPFLAGS += \ -mfloat-abi=hard endif +ifeq ($(TARGET),beagle) +LIBCPPFLAGS += \ +-march=armv7-a \ +-mtune=cortex-a8 \ +-mfloat-abi=hard \ +-mfpu=neon \ +-ffast-math +endif + ifeq ($(GEMM),pigl) LIBCPPFLAGS += \ -I/usr/include \