mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
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:
commit
1784b6c9eb
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue