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 c0eb4df80f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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