# HG changeset patch # User Giulio Moro # Date 1464129981 -3600 # Node ID 48d36405e98706d0cf0c4658a9f67de581aa568a # Parent 3d26df8a8a6cb65c273587fe10856c523e1837c9 Defaulting gcc for on-board compiling, see #1695 diff -r 3d26df8a8a6c -r 48d36405e987 Makefile --- a/Makefile Tue May 24 01:10:04 2016 +0100 +++ b/Makefile Tue May 24 23:46:21 2016 +0100 @@ -22,13 +22,13 @@ ifndef COMPILER # check whether clang is installed - TEST_COMPILER := $(shell which clang) - ifneq ($(strip $(TEST_COMPILER)), ) - # if it is installed, use it - COMPILER := clang - else +# TEST_COMPILER := $(shell which clang) +# ifneq ($(strip $(TEST_COMPILER)), ) +# # if it is installed, use it +# COMPILER := clang +# else COMPILER := gcc - endif +# endif endif ifeq ($(COMPILER), clang)