Merge pull request #17 from Jj0YzL5nvJ/alter_cc_cxx

Allow non-default compilers without resorting to symbolic links
This commit is contained in:
Richard Goedeken 2020-08-30 18:55:21 -07:00 committed by GitHub
commit a5e7e85bc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -277,8 +277,8 @@ endif
endif
# set base program pointers and flags
CC = $(CROSS_COMPILE)gcc
CXX = $(CROSS_COMPILE)g++
CC ?= $(CROSS_COMPILE)gcc
CXX ?= $(CROSS_COMPILE)g++
RM ?= rm -f
INSTALL ?= install
MKDIR ?= mkdir -p