mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 628606 - elfhack causes bustage since ARM target may not return arm. r=glandium,a=sdwilsh
This commit is contained in:
parent
ffb82fe543
commit
352aaf6c99
@ -58,8 +58,12 @@ OS_CXXFLAGS := $(filter-out -fno-exceptions,$(OS_CXXFLAGS)) -fexceptions
|
||||
ifneq (,$(filter %86,$(TARGET_CPU)))
|
||||
CPU := x86
|
||||
else
|
||||
ifneq (,$(filter arm%,$(TARGET_CPU)))
|
||||
CPU := arm
|
||||
else
|
||||
CPU := $(TARGET_CPU)
|
||||
endif
|
||||
endif
|
||||
|
||||
CSRCS := \
|
||||
inject/$(CPU).c \
|
||||
|
Loading…
Reference in New Issue
Block a user