Merge pull request #1203 from reicast/skmp/default-lincpp

linux/make: Default to lincpp if platform detection fails
This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis 2018-07-08 02:05:05 +02:00 committed by GitHub
commit 5bba5036b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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)