aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/rpi_makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/rpi_makefile.inc')
-rw-r--r--tensorflow/contrib/lite/rpi_makefile.inc33
1 files changed, 0 insertions, 33 deletions
diff --git a/tensorflow/contrib/lite/rpi_makefile.inc b/tensorflow/contrib/lite/rpi_makefile.inc
deleted file mode 100644
index 832ef5824b..0000000000
--- a/tensorflow/contrib/lite/rpi_makefile.inc
+++ /dev/null
@@ -1,33 +0,0 @@
-# Settings for Raspberry Pi.
-ifeq ($(TARGET), RPI)
- ifeq ($(TARGET_ARCH), armv7)
- CXXFLAGS += \
- -march=armv7-a \
- -mfpu=neon-vfpv4 \
- -funsafe-math-optimizations \
- -ftree-vectorize
-
- CCFLAGS += \
- -march=armv7-a \
- -mfpu=neon-vfpv4 \
- -funsafe-math-optimizations \
- -ftree-vectorize
-
- LDFLAGS := \
- -Wl,--no-export-dynamic \
- -Wl,--exclude-libs,ALL \
- -Wl,--gc-sections \
- -Wl,--as-needed
- endif
-
- LIBS := \
- -lstdc++ \
- -lpthread \
- -lm \
- -ldl
-
- OBJDIR := $(OBJDIR)rpi_$(TARGET_ARCH)/
- LIBDIR := $(LIBDIR)rpi_$(TARGET_ARCH)/
- BINDIR := $(BINDIR)rpi_$(TARGET_ARCH)/
- DEPDIR := $(DEPDIR)rpi_$(TARGET_ARCH)/
-endif