]> AND Private Git Repository - Cipher_code.git/blobdiff - OneRoundIoT/OneRound/Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / OneRoundIoT / OneRound / Makefile
index 2bdcfc559018f5f629402bee046fd402adca5ea6..8f7867c933cfbe6dcdcae980c281ba0d6b92f9b4 100644 (file)
@@ -1,6 +1,18 @@
 CXX=g++
 C=gcc
 CXX=g++
 C=gcc
-CFLAGS=-O3  -std=c++11 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -lrt
+
+uname_m := $(shell uname -m)
+ifeq ($(uname_m),armv7l)
+CFLAGS=-O3  -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -lrt
+else
+ifeq ($(uname_m),armv6l)
+CFLAGS=-O3   -march=armv6 -mfpu=vfp -mfloat-abi=hard -lrt
+else
+CFLAGS=-O3 
+endif
+endif
+
+
 OBJ = pixmap_io.o one_round_new.o 
 
 %.o: %.c 
 OBJ = pixmap_io.o one_round_new.o 
 
 %.o: %.c