The makefile now links libgcc on ARM64.

This commit is contained in:
OBattler
2021-08-27 13:49:27 +02:00
parent ddc7c5b78a
commit 4222570553

View File

@@ -812,8 +812,13 @@ LIBS += $(WX_LIBS) -lm
endif
LIBS += -lpng -lz -lwsock32 -lshell32 -liphlpapi -lpsapi -lSDL2 -limm32 -lhid -lsetupapi -loleaut32 -luxtheme -lversion -lwinmm -static -lstdc++
ifneq ($(X64), y)
ifneq ($(ARM64), y)
LIBS += -Wl,--large-address-aware
endif
endif
ifeq ($(ARM64), y)
LIBS += -lgcc
endif
ifeq ($(DINPUT), y)
LIBS += -ldinput8
endif