use C linker except when compiling for UWP

This commit is contained in:
twinaphex 2020-12-06 19:16:48 +01:00
parent 0671c476e2
commit dce13d354d

View File

@ -717,7 +717,11 @@ else
LD = link.exe
endif
else
ifneq (,$(findstring uwp,$(PlatformSuffix)))
LD = $(CXX)
else
LD = $(CC)
endif
endif
ifeq ($(platform), theos_ios)