Merge pull request #376 from CrispyBuns/nightly

Makes it so your able to change compiler with CC and CXX Build flag
This commit is contained in:
fgsfds 2020-07-14 20:11:44 +03:00 committed by GitHub
commit eeb46b3c4b
1 changed files with 2 additions and 2 deletions

View File

@ -438,8 +438,8 @@ AS := i686-w64-mingw32-as
endif
ifneq ($(TARGET_WEB),1) # As in, not-web PC port
CC := $(CROSS)gcc
CXX := $(CROSS)g++
CC ?= $(CROSS)gcc
CXX ?= $(CROSS)g++
else
CC := emcc
CXX := emcc