From 5b8fc02f45ebf23b30b1a0da69e8ddc5a713d114 Mon Sep 17 00:00:00 2001 From: Stefanos Kornilios Mitsis Poiitidis Date: Sun, 8 Jul 2018 02:03:12 +0200 Subject: [PATCH] linux/make: Default to lincpp if platform detection fails --- shell/linux/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/linux/Makefile b/shell/linux/Makefile index af31ce086..89204d382 100644 --- a/shell/linux/Makefile +++ b/shell/linux/Makefile @@ -71,7 +71,8 @@ ifeq (,$(platform)) else ifneq (,$(findstring mips,$(ARCH))) platform = gcwz else - $(error Unsupported CPU architecture) + $(warning Unsupported CPU architecture, using lincpp) + platform = lincpp endif FLAGS = $(shell grep flags /proc/cpuinfo)